-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from CiscoCloud/documentation
Documentation
- Loading branch information
Showing
16 changed files
with
89 additions
and
17 deletions.
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
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
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
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
Binary file added
BIN
+15.3 KB
...jects/src/posts/files/shipped-manage-projects/assets/delete-project-confirm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+38.8 KB
...nage-projects/src/posts/files/shipped-manage-projects/assets/delete-project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.76 KB
...nage-projects/src/posts/files/shipped-manage-projects/assets/modify-project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
A User is anyone with access to the deployed project. When you create a project, you are automatically designated a User, although you are the only one. You can add as many users as you want. | ||
|
||
|
||
Add users by sending an Invite Token, which they receive by email. When they respond, Shipped automatically adds them as users. | ||
|
||
##Objectives | ||
Completion time: 15 minutes | ||
|
@@ -17,7 +18,7 @@ You will learn how to: | |
##Prerequisites | ||
|
||
- You must have built and deployed a project. | ||
|
||
- See *Bootstrap a Project*. | ||
|
||
|
||
##References | ||
|
@@ -35,24 +36,50 @@ You can open these references in a separate tab and refer to them during this La | |
<a name="create"></a> | ||
## Add a User using the UI | ||
|
||
You can add new users in the UI. | ||
|
||
1. 1. Click **Settings**, then select the **Collaborators** tab. | ||
1. Click **Settings**, then select the **Collaborators** tab. | ||
|
||
<img src="assets/create-users.png"> | ||
![](posts/files/shipped-manage-users/assets/create-users.png) | ||
|
||
2. Click **Add New User**. | ||
4. Enter the user email addresses. You can enter as many email addresses as you need. | ||
|
||
The Add Users window opens. | ||
|
||
<img src="assets/invite-users.png"> | ||
![](posts/files/shipped-manage-users/assets/invite-users.png) | ||
|
||
4. Enter user email addresses. You can enter as many email addresses as you need. | ||
5. Click **Invite Users**. | ||
|
||
Emails are sent to each user with a unique token number enabling them to log into the Project. | ||
Emails are sent to each user with unique token numbers. When they respond, they are then able to log into the project. | ||
|
||
|
||
## Add a User using the API | ||
|
||
You can create an invite token for single or multiple email addresses. This endpoint sends the invites to these addresses. | ||
|
||
curl 'https://api.ciscoshipped.io/invite_tokens' -H 'Content-Type: application/json' -d '{"project_id":"34a35726-66e9-11e5-99df-0242ac110120","emails":["[email protected]"]}' | ||
|
||
|
||
## Add a User using the CLI | ||
HTTP Request: | ||
|
||
POST https://api.ciscoshipped.io/invite_tokens | ||
|
||
|
||
Shipped accepts an invite by resolving an invite token. If authenticated, Shipped adds the current user to the project; otherwise, instructs the client to redirect to the authentication view. | ||
|
||
curl 'https://api.ciscoshipped.io/invite_tokens/c490939f-66ff-11e5-9de2-0242ac110121' | ||
|
||
|
||
HTTP Request: | ||
|
||
GET https://api.ciscoshipped.io/invite_tokens/<INVITE_TOKEN> | ||
|
||
|
||
## Add a User using the CLI | ||
|
||
This feature has not yet been implemented. | ||
|
||
|
||
|
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
Binary file added
BIN
+53 KB
shipped-manage-users/src/posts/files/shipped-manage-users/assets/create-users.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+13.5 KB
shipped-manage-users/src/posts/files/shipped-manage-users/assets/invite-users.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+14.7 KB
shipped-manage-users/src/posts/files/shipped-manage-users/assets/user-details.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.