Skip to content

Commit a578efd

Browse files
authored
Merge branch 'processing:develop' into fix-drag-console
2 parents 56f137c + 3a80ee6 commit a578efd

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

client/modules/IDE/components/AddToCollectionList.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class CollectionList extends React.Component {
3939
props.getProject(props.projectId);
4040
}
4141

42-
this.props.getCollections(this.props.username);
42+
this.props.getCollections(this.props.user.username);
4343

4444
this.state = {
4545
hasLoadedData: false

contributor_docs/public_api.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@ You must provide the version number when accessing the API.
2929

3030
The API accepts and returns the following model objects, as JSON.
3131

32+
## Enabling Access Token UI in Settings Page
33+
34+
To enable the Access Token UI in the Settings page, follow these steps:
35+
36+
1. Navigate to the `.env` file in your project.
37+
2. Locate the line specifying UI_ACCESS_TOKEN_ENABLED.
38+
3. Set the value to `true`, as shown below:
39+
40+
```bash
41+
UI_ACCESS_TOKEN_ENABLED=true
42+
```
43+
3244
## Sketch
3345

3446
| Name | Type | Description |
@@ -217,3 +229,5 @@ No body
217229
|---------------|-------------------------|
218230
| 200 OK | Sketch has been deleted |
219231
| 404 Not Found | Sketch does not exist |
232+
233+

0 commit comments

Comments
 (0)