0
0
Fork 0

Add "locked" flag to accounts, prevent blocked users from following, force-unfollow blocked users

This commit is contained in:
Eugen Rochko 2016-12-22 21:34:19 +01:00
parent f91b6fa9e1
commit 2d2154ba75
9 changed files with 27 additions and 3 deletions

6
app/lib/exceptions.rb Normal file
View file

@ -0,0 +1,6 @@
# frozen_string_literal: true
module Mastodon
class Error < StandardError; end
class NotPermitted < Error; end
end