1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00

Make setup process use new isEmail helper

This commit is contained in:
Harvey Kandola 2019-03-03 18:03:48 +00:00
parent 54bf258c61
commit d009e4ed2a
3 changed files with 727 additions and 727 deletions

View file

@ -42,7 +42,7 @@ func main() {
rt.Product.Major = "2"
rt.Product.Minor = "1"
rt.Product.Patch = "0"
rt.Product.Revision = "190303131357"
rt.Product.Revision = "190303175106"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = domain.CommunityEdition
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)

File diff suppressed because one or more lines are too long

View file

@ -12,7 +12,7 @@
import $ from 'jquery';
import { empty, and } from '@ember/object/computed';
import { isEmpty } from '@ember/utils';
import stringUtil from '../utils/string';
import stringUtil from '../../utils/string';
import { set } from '@ember/object';
import Component from '@ember/component';