mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:43:25 +08: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
|
|
|