Skip to content

Commit 725ab8b

Browse files
authored
Merge pull request #3731 from manyfold3d/short-usernames
Allow one and two character usernames
2 parents 4b57b26 + 64f26c2 commit 725ab8b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

app/models/user.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class User < ApplicationRecord
2323
validates :username,
2424
presence: true,
2525
uniqueness: {case_sensitive: false},
26-
format: {with: /\A[[:alnum:]]{3,}\z/}
26+
format: {with: /\A[[:alnum:]]+\z/}
2727

2828
validates :email,
2929
presence: true,

spec/models/user_spec.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
expect(build(:user, username: nil)).not_to be_valid
99
end
1010

11-
it "doesn't allow single-character usernames" do
12-
expect(build(:user, username: "a")).not_to be_valid
11+
it "allows single-character usernames" do
12+
expect(build(:user, username: "a")).to be_valid
1313
end
1414

15-
it "doesn't allow two-character usernames" do
16-
expect(build(:user, username: "ab")).not_to be_valid
15+
it "allows two-character usernames" do
16+
expect(build(:user, username: "ab")).to be_valid
1717
end
1818

1919
it "allow three-character usernames" do

0 commit comments

Comments
 (0)