We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd5f9f2 + 6710250 commit ae27f20Copy full SHA for ae27f20
collections/roles.js
@@ -0,0 +1,7 @@
1
+var RolesSchema = new SimpleSchema({
2
+ name: {
3
+ type: String
4
+ }
5
+});
6
+
7
+Meteor.roles.attachSchema(RolesSchema);
lib/_config/adminConfig.coffee
@@ -27,6 +27,12 @@
27
{label: 'Backend Host', name: 'backend_host'}
28
]
29
}
30
+ 'Meteor.roles': {
31
+ label: 'Roles',
32
+ tableColumns: [
33
+ {label: 'Name', name: 'name'}
34
+ ]
35
36
ApiUmbrellaAdmins: {
37
color: 'blue'
38
icon: 'user-md'
0 commit comments