ants 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/app/assets/javascripts/ants/admin_users.coffee +10 -10
- data/lib/ants/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 712e55e9082096099f5a7ba01710bbe7db985763
|
4
|
+
data.tar.gz: 510bd8d72614fe3722f2829cc3ea05e96f92cf3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 246bad50408a95ced72c354bc2eadfbcf421bd56c6a9eecb7c961ad4b4a806a45aa401ebaf0b7703e43dc58fc94aa8200d210039eeb33a2192d1e3ac0e3dafeb
|
7
|
+
data.tar.gz: 9ba4b32619583139a8a4cf49fd7481a8d1a1941530ddcdec820b09fe6f985f448806aa3ce5410bf56473823349cd0a1682f24dc29683324e9671273d56811d90
|
data/Gemfile.lock
CHANGED
@@ -5,17 +5,17 @@ class @AntsAdminUsers
|
|
5
5
|
showWithParent: true
|
6
6
|
|
7
7
|
arrayStore: new RailsArrayStore({
|
8
|
-
resource:
|
9
|
-
path:
|
10
|
-
sortBy:
|
8
|
+
resource: 'admin_user'
|
9
|
+
path: "#{ apiPath }/admin_users"
|
10
|
+
sortBy: 'name'
|
11
11
|
searchable: true
|
12
12
|
})
|
13
13
|
|
14
14
|
formSchema:
|
15
15
|
name:
|
16
|
-
type:
|
17
|
-
required:
|
18
|
-
label:
|
16
|
+
type: 'string'
|
17
|
+
required: true
|
18
|
+
label: "Name"
|
19
19
|
placeholder: 'Full name'
|
20
20
|
onInitialize: (input) ->
|
21
21
|
if input.object
|
@@ -24,8 +24,8 @@ class @AntsAdminUsers
|
|
24
24
|
input._add_disabled()
|
25
25
|
|
26
26
|
email:
|
27
|
-
type:
|
28
|
-
required:
|
27
|
+
type: 'string'
|
28
|
+
required: true
|
29
29
|
placeholder: 'Email'
|
30
30
|
|
31
31
|
onInitialize: (input) ->
|
@@ -40,8 +40,8 @@ class @AntsAdminUsers
|
|
40
40
|
input.$actions.append input.$avatarBtn
|
41
41
|
|
42
42
|
password:
|
43
|
-
type:
|
44
|
-
required:
|
43
|
+
type: 'password'
|
44
|
+
required: true
|
45
45
|
placeholder: 'Password'
|
46
46
|
onInitialize: (input) ->
|
47
47
|
if input.object
|
data/lib/ants/version.rb
CHANGED