Blame view

imports/collections/orgs/methods.js 1.14 KB
6be49625f   Deepak   created route def...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
  // import { } from '/imports/collections/orgs/methods';
  import _                                  from 'lodash';
  import { Meteor }                         from 'meteor/meteor';
  import { ValidatedMethod }                from 'meteor/mdg:validated-method';
  import { SimpleSchema }                   from 'meteor/aldeed:simple-schema';
  import { DDPRateLimiter }                 from 'meteor/ddp-rate-limiter';
  import { Bert }                           from 'meteor/themeteorchef:bert';
  import { Users }                          from '/imports/collections/users/index';
  import { Orgs }                           from '/imports/collections/orgs/index';
  // import { sendNotificationAPN }            from '/imports/server/push/methods';
  export const orgMethod = new ValidatedMethod({
    name: 'org.method',
  
    validate: new SimpleSchema({
      itemId: { type: String },
    }).validator(),
  
    run({itemId}) {
      return {};
    },
  
  });
  
  export const checkExistingOrg = new ValidatedMethod({
    name: 'checkExistingOrg',
    validate: new SimpleSchema({
      slug: { type: String },
    }).validator(),
  
    run({slug}) {
cc8fd8a94   Deepak   Moved all files t...
31
      org = Orgs.findOne({slug:slug});
6be49625f   Deepak   created route def...
32
33
34
35
      return org;
    },
  
  });