mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-01 11:40:25 +00:00
11 lines
252 B
CoffeeScript
11 lines
252 B
CoffeeScript
|
|
###
|
||
|
|
app exports
|
||
|
|
###
|
||
|
|
module.exports.app = (appExports, model) ->
|
||
|
|
user = model.at '_user'
|
||
|
|
|
||
|
|
user.on 'set', 'flags.dropsEnabled', (captures, args) ->
|
||
|
|
return unless captures == true
|
||
|
|
# do drops enabled stuff
|
||
|
|
$('#dropsEnabled-modal').show()
|