mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 10:08:20 -05:00
23 lines
520 B
CoffeeScript
23 lines
520 B
CoffeeScript
window.Discourse.AdminFlagsController = Ember.Controller.extend
|
|
|
|
clearFlags: (item) ->
|
|
item.clearFlags().then (=>
|
|
@content.removeObject(item)
|
|
), (->
|
|
bootbox.alert("something went wrong")
|
|
)
|
|
|
|
deletePost: (item) ->
|
|
item.deletePost().then (=>
|
|
@content.removeObject(item)
|
|
), (->
|
|
bootbox.alert("something went wrong")
|
|
)
|
|
|
|
adminOldFlagsView: (->
|
|
@query == 'old'
|
|
).property('query')
|
|
|
|
adminActiveFlagsView: (->
|
|
@query == 'active'
|
|
).property('query')
|