mirror of
https://github.com/Dahlgren/arma-server-web-admin.git
synced 2024-08-30 17:22:10 +00:00
12 lines
225 B
JavaScript
12 lines
225 B
JavaScript
|
var _ = require('lodash')
|
||
|
|
||
|
var Settings = function (config) {
|
||
|
this.config = config
|
||
|
}
|
||
|
|
||
|
Settings.prototype.getPublicSettings = function () {
|
||
|
return _.pick(this.config, ['game', 'path', 'type'])
|
||
|
}
|
||
|
|
||
|
module.exports = Settings
|