mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
15 lines
181 B
Ruby
15 lines
181 B
Ruby
|
class TopicsBulkAction
|
||
|
|
||
|
def initialize(user, topic_ids, operation)
|
||
|
@user = user
|
||
|
@topic_ids = topic_ids
|
||
|
@operation = operation
|
||
|
end
|
||
|
|
||
|
def perform!
|
||
|
[]
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|