File tree 6 files changed +17
-10
lines changed
app/src/main/ui/src/components/users
6 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## [ Unreleased]
8
8
9
+ ## [ v1.17.1-1] - 2024-11-05
10
+ ### Fixed
11
+ - Only show external-user-hint if user is marked as external [ #177 ]
12
+ - Fix list structure in gui docs
13
+
9
14
## [ v1.17.0-1] - 2024-10-29
10
15
### Changed
11
16
- Mark external users [ #173 ]
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ FROM registry.cloudogu.com/official/java:8u402-6
75
75
ARG TOMCAT_VERSION
76
76
77
77
LABEL NAME="official/usermgt" \
78
- VERSION="1.17.0 -1" \
78
+ VERSION="1.17.1 -1" \
79
79
80
80
81
81
# mark as webapp for nginx
Original file line number Diff line number Diff line change 1
1
# Set these to the desired values
2
2
ARTIFACT_ID =usermgt
3
- VERSION =1.17.0 -1
3
+ VERSION =1.17.1 -1
4
4
# overwrite ADDITIONAL_LDFLAGS to disable static compilation
5
5
# this should fix https://github.com/golang/go/issues/13470
6
6
ADDITIONAL_LDFLAGS =""
Original file line number Diff line number Diff line change @@ -98,9 +98,11 @@ export default function UserForm<T extends User>(props: UserFormProps<T>) {
98
98
< Prompt when = { handler . dirty && ! handler . isSubmitting } message = { t ( "generic.notification.form.prompt" ) } />
99
99
< Form handler = { handler } >
100
100
{ notification }
101
- < span className = { "font-bold" } >
102
- { t ( "users.externalUserWarning" ) }
103
- </ span >
101
+ { ( props . initialUser . external ) && (
102
+ < span className = { "font-bold" } >
103
+ { t ( "users.externalUserWarning" ) }
104
+ </ span >
105
+ ) }
104
106
< Form . ValidatedTextInput type = { "text" } name = { "username" } disabled = { props . disableUsernameField ?? true } data-testid = "username" placeholder = { t ( "users.placeholder.username" ) } hint = { t ( "users.hint.username" ) } >
105
107
{ t ( "editUser.labels.username" ) }
106
108
</ Form . ValidatedTextInput >
Original file line number Diff line number Diff line change @@ -267,10 +267,10 @@ The columns describe the following information:
267
267
* ** username** - username of the account
268
268
* If the specified username already exists, this account will be updated with the specified information and no new account will be created.
269
269
* Cannot be changed after an account has been created
270
- ** displayname** - Display name of the account
271
- ** givenname** - First name of the user
272
- ** surname** - Last name of the user
273
- ** mail** - Mail address of the user
270
+ * * * displayname** - Display name of the account
271
+ * * * givenname** - First name of the user
272
+ * * * surname** - Last name of the user
273
+ * * * mail** - Mail address of the user
274
274
* ** pwdReset** - Indicates whether the password must be reset at the next login
275
275
* Specified using * false* or * true* , where * true* indicates that the password must be reset at the next login
276
276
* For newly created accounts, * pwdReset* is always automatically set to * true
Original file line number Diff line number Diff line change 1
1
{
2
2
"Name" : " official/usermgt" ,
3
- "Version" : " 1.17.0 -1" ,
3
+ "Version" : " 1.17.1 -1" ,
4
4
"DisplayName" : " User Management" ,
5
5
"Description" : " User and Group Management." ,
6
6
"Category" : " Administration Apps" ,
You can’t perform that action at this time.
0 commit comments