diff options
author | lsde <lsde@users.noreply.github.com> | 2018-09-21 16:08:55 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-25 11:41:15 +0200 |
commit | 7e7ab7a15d20e72b230d646cbd786bab014bde9d (patch) | |
tree | 439145f354970569e93bf66d5dd86267a46c9d2f /server | |
parent | 4ebf25fda02cc19cbb0919f2595234c7e945596f (diff) | |
download | PeerTube-7e7ab7a15d20e72b230d646cbd786bab014bde9d.tar.gz PeerTube-7e7ab7a15d20e72b230d646cbd786bab014bde9d.tar.zst PeerTube-7e7ab7a15d20e72b230d646cbd786bab014bde9d.zip |
Add dot into allowed actor username
One should have an oportunity to include a dot into the username.
Currently, it breaks the flow if one has an SSO in front of PeeTube which creates users with "name.surname".
Diffstat (limited to 'server')
-rw-r--r-- | server/helpers/custom-validators/activitypub/actor.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/helpers/custom-validators/activitypub/actor.ts b/server/helpers/custom-validators/activitypub/actor.ts index 6958b2b00..77c003cdf 100644 --- a/server/helpers/custom-validators/activitypub/actor.ts +++ b/server/helpers/custom-validators/activitypub/actor.ts | |||
@@ -27,7 +27,7 @@ function isActorPublicKeyValid (publicKey: string) { | |||
27 | validator.isLength(publicKey, CONSTRAINTS_FIELDS.ACTORS.PUBLIC_KEY) | 27 | validator.isLength(publicKey, CONSTRAINTS_FIELDS.ACTORS.PUBLIC_KEY) |
28 | } | 28 | } |
29 | 29 | ||
30 | const actorNameRegExp = new RegExp('^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\\-_]+$') | 30 | const actorNameRegExp = new RegExp('^[ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789\\-_\.]+$') |
31 | function isActorPreferredUsernameValid (preferredUsername: string) { | 31 | function isActorPreferredUsernameValid (preferredUsername: string) { |
32 | return exists(preferredUsername) && validator.matches(preferredUsername, actorNameRegExp) | 32 | return exists(preferredUsername) && validator.matches(preferredUsername, actorNameRegExp) |
33 | } | 33 | } |