Added additional mod actions

This commit is contained in:
BrokenEagle
2018-01-13 20:40:16 -08:00
parent fcdc61f111
commit 85f04a826a
4 changed files with 20 additions and 0 deletions

View File

@@ -436,6 +436,7 @@ class Artist < ApplicationRecord
end
update_column(:is_banned, false)
ModAction.log("unbanned artist ##{id}",:artist_unban)
end
end
end
@@ -458,6 +459,7 @@ class Artist < ApplicationRecord
end
update_column(:is_banned, true)
ModAction.log("banned artist ##{id}",:artist_ban)
end
end
end