-
Notifications
You must be signed in to change notification settings - Fork 467
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue-29616-authentication-endpoint-documentation (#29617)
### Proposed Changes * `v1/authentication` endpoint documentation * `v1/authentication/api-token` documentation * `v1/authentication/logInUser` documentation ### Checklist - [ ] Tests - [ ] Translations - [ ] Security Implications Contemplated (add notes if applicable) ### Additional Info ** any additional useful context or info ** ### Screenshots Original | Updated :-------------------------:|:-------------------------: ** original screenshot ** | ** updated screenshot **
- Loading branch information
1 parent
a56e019
commit 36f72e4
Showing
4 changed files
with
93 additions
and
1 deletion.
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
9 changes: 9 additions & 0 deletions
9
dotCMS/src/main/java/com/dotcms/rest/api/v1/authentication/ResponseEntityUserMapView.java
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,9 @@ | ||
package com.dotcms.rest.api.v1.authentication; | ||
|
||
import com.dotcms.rest.ResponseEntityView; | ||
|
||
public class ResponseEntityUserMapView extends ResponseEntityView<AuthenticationForm> { | ||
public ResponseEntityUserMapView(AuthenticationForm entity) { | ||
super(entity); | ||
} | ||
} |
9 changes: 9 additions & 0 deletions
9
dotCMS/src/main/java/com/dotcms/rest/api/v1/authentication/ResponseEntityUserView.java
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,9 @@ | ||
package com.dotcms.rest.api.v1.authentication; | ||
|
||
import com.dotcms.rest.ResponseEntityView; | ||
|
||
public class ResponseEntityUserView extends ResponseEntityView<AuthenticationForm> { | ||
public ResponseEntityUserView(AuthenticationForm entity) { | ||
super(entity); | ||
} | ||
} |