-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
User management login allowed (#8433)
- Loading branch information
Jan
authored
Feb 23, 2023
1 parent
1af5150
commit 156d02a
Showing
23 changed files
with
274 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# The version of OCIS to use in pipelines that test against OCIS | ||
OCIS_COMMITID=359509dcfe0bd8bf23c71c7aee5fdd27faa7675a | ||
OCIS_COMMITID=9e73b17a403a9283a281495bb3c35246c75c08e9 | ||
OCIS_BRANCH=master |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Enhancement: User settings login field | ||
|
||
We've introduced the new login field in the user settings, | ||
where the admin can allow or disallow the login for the respective user. | ||
|
||
https://github.com/owncloud/web/pull/8433 | ||
https://github.com/owncloud/web/issues/8484 | ||
https://github.com/owncloud/web/issues/8467 |
4 changes: 4 additions & 0 deletions
4
packages/design-system/changelog/unreleased/enhancement-align-disabled-state-on-oc-select
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Enhancement: Align disabled state on oc-select component | ||
|
||
We've align the visual disabled state on the oc-select component, | ||
so it unifies with the disabled state of the oc-text-input component. |
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
19 changes: 19 additions & 0 deletions
19
tests/e2e/cucumber/features/smoke/admin-settings/users.ocis.feature
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
Feature: spaces management | ||
|
||
Scenario: user login can be managed in the admin settings | ||
Given "Admin" creates following users | ||
| id | | ||
| Alice | | ||
When "Admin" logs in | ||
And "Admin" opens the "admin-settings" app | ||
And "Admin" navigates to the users management page | ||
And "Admin" forbids the login for the following user "Alice" using the sidebar panel | ||
And "Admin" logs out | ||
Then "Alice" fails to log in | ||
When "Admin" logs in | ||
And "Admin" opens the "admin-settings" app | ||
And "Admin" navigates to the users management page | ||
And "Admin" allows the login for the following user "Alice" using the sidebar panel | ||
And "Admin" logs out | ||
Then "Alice" logs in | ||
And "Alice" logs out |
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
Oops, something went wrong.