]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user_block.rb
Fix translation names
[rails.git] / app / models / user_block.rb
index 60f680ac3016e02b2d4b6acf4437658b26f01f5d..9150bae7962b641c03e49ee7ddd888b0d57d4756 100644 (file)
@@ -78,7 +78,7 @@ class UserBlock < ApplicationRecord
   # block. this should be caught and dealt with in the controller,
   # but i've also included it here just in case.
   def moderator_permissions
-    errors.add(:base, I18n.t("user_block.model.non_moderator_update")) if creator_id_changed? && !creator.moderator?
-    errors.add(:base, I18n.t("user_block.model.non_moderator_revoke")) unless revoker_id.nil? || revoker.moderator?
+    errors.add(:base, I18n.t("user_blocks.model.non_moderator_update")) if creator_id_changed? && !creator.moderator?
+    errors.add(:base, I18n.t("user_blocks.model.non_moderator_revoke")) if revoker_id_changed? && !revoker_id.nil? && !revoker.moderator?
   end
 end