mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:31:56 +08:00
8 lines
148 B
Ruby
8 lines
148 B
Ruby
|
class WatchedWordSerializer < ApplicationSerializer
|
||
|
attributes :id, :word, :action
|
||
|
|
||
|
def action
|
||
|
WatchedWord.actions[object.action]
|
||
|
end
|
||
|
end
|