8 lines
147 B
Ruby
8 lines
147 B
Ruby
class Moderation::CommentsController < Moderation::BaseController
|
|
|
|
def hide
|
|
@comment = Comment.find(params[:id])
|
|
@comment.hide
|
|
end
|
|
|
|
end |