hummingbird-me/kitsu-server

View on GitHub
app/resources/report_resource.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class ReportResource < BaseResource
  attributes :reason, :status, :explanation, :naughty_type, :naughty_id

  has_one :naughty, polymorphic: true
  has_one :user
  has_one :moderator

  filters :user_id, :naughty_id, :naughty_type, :status, :reason
end