mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
bced70469a
* Add database columns for adding notes to domain blocks/restrctions * Add admin UI to set private and public comments when blocking a domain * Add text for private and public comments on domain blocks * Show domain block comments in admin UI * Add comments to the domain block undo page * Make UnblockDomainService more robust regarding upgraded domain blocks * Allow editing domain blocks * Rename button from “undo domain block” to “view domain block” in account admin UI * Change test to unsilence silenced users from upgraded blocks
8 lines
196 B
Ruby
8 lines
196 B
Ruby
class AddCommentsToDomainBlocks < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :domain_blocks, :private_comment, :text
|
|
add_column :domain_blocks, :public_comment, :text
|
|
end
|
|
end
|
|
|