-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add configuration option to restrict users by default (#16256)
* add configuration option to restrict users by default * default IsRestricted permission only set on sign up setting this in the model messes with other workflows (e.g. syncing LDAP users) where the IsRestricted permission needs to be explicitly set and not overridden by a config value * fix formatting * Apply suggestions from code review * ensure newly created user is set to restricted * ensure imports are in the correct order Co-authored-by: 6543 <[email protected]> Co-authored-by: techknowlogick <[email protected]>
- Loading branch information
1 parent
251d7f5
commit 908136c
Showing
5 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ import ( | |
"strings" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models" | ||
"code.gitea.io/gitea/modules/setting" | ||
"github.com/stretchr/testify/assert" | ||
"github.com/unknwon/i18n" | ||
|
@@ -33,6 +34,28 @@ func TestSignup(t *testing.T) { | |
MakeRequest(t, req, http.StatusOK) | ||
} | ||
|
||
func TestSignupAsRestricted(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
setting.Service.EnableCaptcha = false | ||
setting.Service.DefaultUserIsRestricted = true | ||
|
||
req := NewRequestWithValues(t, "POST", "/user/sign_up", map[string]string{ | ||
"user_name": "restrictedUser", | ||
"email": "[email protected]", | ||
"password": "examplePassword!1", | ||
"retype": "examplePassword!1", | ||
}) | ||
MakeRequest(t, req, http.StatusFound) | ||
|
||
// should be able to view new user's page | ||
req = NewRequest(t, "GET", "/restrictedUser") | ||
MakeRequest(t, req, http.StatusOK) | ||
|
||
user2 := models.AssertExistsAndLoadBean(t, &models.User{Name: "restrictedUser"}).(*models.User) | ||
assert.True(t, user2.IsRestricted) | ||
} | ||
|
||
func TestSignupEmail(t *testing.T) { | ||
defer prepareTestEnv(t)() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters