diff options
author | lain <lain@soykaf.club> | 2018-12-25 20:09:27 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-12-25 20:10:45 +0100 |
commit | 91724d160acc39585c37742204c59b91e59df569 (patch) | |
tree | 7f811d164f717daeaab95c540b26bb68826ba2ad /lib | |
parent | 922abcda61298a7bca48894cb9a51a52fdeab1ed (diff) | |
download | pleroma-91724d160acc39585c37742204c59b91e59df569.tar.gz |
Reserve a few user names
These are all names that are used for domain.com/:route routes or projected to be.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/user.ex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 1f930479d..33f5e43fc 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -197,6 +197,7 @@ defmodule Pleroma.User do |> validate_confirmation(:password) |> unique_constraint(:email) |> unique_constraint(:nickname) + |> validate_exclusion(:nickname, Pleroma.Config.get([Pleroma.User, :restricted_nicknames])) |> validate_format(:nickname, local_nickname_regex()) |> validate_format(:email, @email_regex) |> validate_length(:bio, max: 1000) |