Add new routes for the proposal notifications edition and abilities to let moderators edit it (mark as ignored, hide, etc.). The notifications are not flaggable because they doesn't work like that, but in a similar way. The moderator/administrator is in charge of hidding them through the UI, so the normal users don't flag it as inappropriate. New controller Moderation::ProposalNotification to manage the moderators work.
30 lines
571 B
Ruby
30 lines
571 B
Ruby
module Polymorphic
|
|
|
|
private
|
|
|
|
def resource
|
|
@resource ||= instance_variable_get("@#{resource_name}")
|
|
end
|
|
|
|
def resource_name
|
|
@resource_name ||= resource_model.to_s.downcase
|
|
end
|
|
|
|
def resource_relation
|
|
@resource_relation ||= resource_model.all
|
|
end
|
|
|
|
def set_resource_instance
|
|
instance_variable_set("@#{resource_name}", @resource)
|
|
end
|
|
|
|
def set_resources_instance
|
|
instance_variable_set("@#{resource_name.pluralize}", @resources)
|
|
end
|
|
|
|
def strong_params
|
|
send("#{resource_name}_params")
|
|
end
|
|
|
|
end
|