Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
94d4d5c
enhance roles and permission endpoints
ldavidsdl Feb 12, 2026
a52c406
fine tune descriptions, internalize placeholder object
ldavidsdl Feb 12, 2026
2d3009e
add list permissions endpoint
ldavidsdl Feb 13, 2026
d417eb6
add exmaples on permission response fields
ldavidsdl Feb 13, 2026
148119d
clean up, add constraints, more detailed descriptions
ldavidsdl Feb 13, 2026
2927df1
added more detailed error response descriptions
ldavidsdl Feb 13, 2026
a7dcd93
fixed links, refined description
ldavidsdl Feb 13, 2026
b80719b
expanded permission object on response instead of name only
ldavidsdl Feb 13, 2026
97c7394
converting entity type to object
Mar 5, 2026
8aaf7ec
adding 403 error on create roles and updated descriptions
Mar 12, 2026
a84de91
moved duplicate exception to 409 for translation engine update
Mar 12, 2026
44b3da8
changed Roles and Permissions to singular
Mar 16, 2026
eea1b73
removing min requirements for description
Mar 16, 2026
13842ce
added missing to 400 exceptions
Mar 16, 2026
5631816
Remove fields parameter reference from Update Application
rwsrtritean Mar 18, 2026
a7ef244
adding metadata values to user and group objects
Mar 24, 2026
54eaaa5
Fix description for Update Group API
rwsrtritean Mar 24, 2026
5d98db3
updating metadata docs
Mar 26, 2026
7995d10
2026.04.R1.PublicAPIService.docs
rwsrtritean Apr 6, 2026
3ffb3ff
Merge pull request #48 from RWS/remove-fields-update-application
rwsrtritean Apr 7, 2026
1781ff3
Merge pull request #50 from RWS/user-and-group-metadata
rwsrtritean Apr 7, 2026
a7f4b10
Merge pull request #49 from RWS/expand-roles-and-permissions
rwsrtritean Apr 7, 2026
a316422
2026.04.R1.PublicAPIService.docs
rwsrtritean Apr 7, 2026
56a6660
2026.04.R1.PublicAPIService.docs
rwsrtritean Apr 7, 2026
7ae47b9
2026.04.R1.PublicAPIService.docs
rwsrtritean Apr 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions RWSTemplate/styles/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

UI extensions offer the possibility to add custom user interface elements and functionality. Custom [buttons and panels can be added to specific places](UI-App-custom-elements-locations.md) within the user interface.

> [!CAUTION]
> #### This feature is currently in BETA.
> [!CAUTION]
> **This feature is currently in BETA.**
>
> Please note that in a future phase, we will introduce significant changes as we move towards the official release:
> * The current implementation utilizes the authorization token of the logged-in Trados user for the Trados Cloud Platform API and the app's own API calls. In a future update, a different authorization token will be introduced for these operation.
> * As a result, access to the Trados Cloud Platform API functionality of a UI extension app will be governed not only by the Trados user's permissions but also by the app's [scopes](App-Descriptor.md#scopes).
Expand Down Expand Up @@ -231,12 +232,14 @@ Note that adding `script` tags is not allowed and scripts from sources that are
### Notes

> [!NOTE]
> #### Custom elements display order
> **Custom elements display order**
>
> Within a single UI extension: custom elements in your extension that have the same `location` are displayed in the same order in which they are present in your `ExtensionElement`s array.
>
> With multiple UI extensions: the display order is determined by the order in which each UI extension's script file is loaded in the Trados UI.


> [!NOTE]
> #### Unexpected re-renders
> **Unexpected re-renders**
>
> A custom element's `onrender` event can be triggered multiple times depending on state changes in the Trados UI and depending on user's interactions with Trados UI. Subsequently, the corresponding `eventHandler` gets executed multiple times. You can add logic specific to you use-case to protect your UI extension against unneeded execution of `onrender` `eventHandler`.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To configure your MongoDB follow these steps:
```
2. Copy the `IPv4 Address` IP address. Note - your IP can change depending on your network settings, and you might need to update it from time to time.
3. Go to your MongoDB `/bin` location (usually 'C:/Program Files/MongoDB/Server/\<version\>/bin'), open `mongod.cfg` as Administrator and add the copied address to the `bindIp` configuration setting. For example:
```conf
```
...
net:
port: 27017
Expand Down
Loading
Loading