mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-14 21:57:55 +08:00
19 lines
619 B
CoffeeScript
19 lines
619 B
CoffeeScript
|
Actions = require './onboarding-actions'
|
||
|
NylasStore = require 'nylas-store'
|
||
|
|
||
|
class NylasApiEnvironmentStore extends NylasStore
|
||
|
constructor: ->
|
||
|
@listenTo Actions.changeAPIEnvironment, @_setEnvironment
|
||
|
|
||
|
defaultEnv = if atom.inDevMode() then 'staging' else 'staging'
|
||
|
@_setEnvironment(defaultEnv) unless atom.config.get('env')
|
||
|
|
||
|
getEnvironment: -> atom.config.get('env')
|
||
|
|
||
|
_setEnvironment: (env) ->
|
||
|
throw new Error("Environment #{env} is not allowed") unless env in ['development', 'staging', 'production']
|
||
|
atom.config.set('env', env)
|
||
|
@trigger()
|
||
|
|
||
|
module.exports = new NylasApiEnvironmentStore()
|