Blame view
server/admin/startup.js
301 Bytes
3b214be5e
|
1 2 |
/* * Startup |
c2a6cf38e
|
3 4 |
* Functions to run on server startup. Note: this file is for calling functions * only. Define functions in /server/admin/startup-functions. |
3b214be5e
|
5 |
*/ |
c2a6cf38e
|
6 |
Meteor.startup(function(){ |
3b214be5e
|
7 |
|
c2a6cf38e
|
8 9 |
// Custom Browser Policies customBrowserPolicies(); |
3b214be5e
|
10 |
|
c2a6cf38e
|
11 12 |
// Generate Test Accounts generateTestAccounts(); |
3b214be5e
|
13 |
|
c2a6cf38e
|
14 |
}); |