You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
492 B
34 lines
492 B
# frozen_string_literal: true |
|
|
|
%w( |
|
abuse |
|
account |
|
accounts |
|
admin |
|
administration |
|
administrator |
|
admins |
|
help |
|
helpdesk |
|
instance |
|
mod |
|
moderator |
|
moderators |
|
mods |
|
owner |
|
root |
|
security |
|
server |
|
staff |
|
support |
|
webmaster |
|
).each do |str| |
|
UsernameBlock.create_with(username: str, exact: true).find_or_create_by(username: str) |
|
end |
|
|
|
%w( |
|
mastodon |
|
mastadon |
|
).each do |str| |
|
UsernameBlock.create_with(username: str, exact: false).find_or_create_by(username: str) |
|
end
|
|
|