Skip to content

Commit

Permalink
Rename global endpoints and update config file comments (#4876)
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Quandt <[email protected]>
  • Loading branch information
thquad authored and richard-cox committed Apr 16, 2021
1 parent 0757fba commit 043140c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/jetstream/config.dev
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ LOCAL_USER_PASSWORD=admin
LOCAL_USER_SCOPE=stratos.admin

# Enable users create user endpoints (disabled, admin_only, enabled). Default is disabled
# admin_only will enable admins to see created user endpoints, but users won't be able to create user endpoints or see them
# admin_only will enable admins to create or see user endpoints, but users won't be able to create user endpoints or see them
USER_ENDPOINTS_ENABLED=disabled

# Enable/disable API key-based access to Stratos API (disabled, admin_only, all_users). Default is admin_only
Expand Down
2 changes: 1 addition & 1 deletion src/jetstream/config.example
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ENABLE_TECH_PREVIEW=false
# HOME_VIEW_SHOW_FAVORITES_ONLY=false

# Enable users create user endpoints (disabled, admin_only, enabled). Default is disabled
# admin_only will enable admins to see created user endpoints, but users won't be able to create user endpoints or see them
# admin_only will enable admins to create or see user endpoints, but users won't be able to create user endpoints or see them
USER_ENDPOINTS_ENABLED=disabled

# User Invites
Expand Down
2 changes: 1 addition & 1 deletion src/jetstream/info.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (p *portalProxy) getInfo(c echo.Context) (*interfaces.Info, error) {

// set the creator preemptively as admin, if no id is found
endpoint.Creator = &interfaces.CreatorInfo{
Name: "Global Endpoint",
Name: "System Endpoint",
Admin: false,
System: true,
}
Expand Down

0 comments on commit 043140c

Please sign in to comment.