mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +00:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
|
|
import { SysConfig } from '../imports/api/systemConfig.js';
|
||
|
|
|
||
|
|
Meteor.publish("SystemConfig", function() {
|
||
|
|
try {
|
||
|
|
return SysConfig.find({});
|
||
|
|
} catch (error) {
|
||
|
|
console.log(" ERROR pulling system config data: " + error);
|
||
|
|
}
|
||
|
|
});
|