Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.9 KiB

  1. .TH "NPM\-TEAM" "1" "August 2018" "" ""
  2. .SH "NAME"
  3. \fBnpm-team\fR \- Manage organization teams and team memberships
  4. .SH SYNOPSIS
  5. .P
  6. .RS 2
  7. .nf
  8. npm team create <scope:team>
  9. npm team destroy <scope:team>
  10. npm team add <scope:team> <user>
  11. npm team rm <scope:team> <user>
  12. npm team ls <scope>|<scope:team>
  13. npm team edit <scope:team>
  14. .fi
  15. .RE
  16. .SH DESCRIPTION
  17. .P
  18. Used to manage teams in organizations, and change team memberships\. Does not
  19. handle permissions for packages\.
  20. .P
  21. Teams must always be fully qualified with the organization/scope they belong to
  22. when operating on them, separated by a colon (\fB:\fP)\. That is, if you have a
  23. \fBdevelopers\fP team on a \fBfoo\fP organization, you must always refer to that team as
  24. \fBfoo:developers\fP in these commands\.
  25. .RS 0
  26. .IP \(bu 2
  27. create / destroy:
  28. Create a new team, or destroy an existing one\.
  29. .IP \(bu 2
  30. add / rm:
  31. Add a user to an existing team, or remove a user from a team they belong to\.
  32. .IP \(bu 2
  33. ls:
  34. If performed on an organization name, will return a list of existing teams
  35. under that organization\. If performed on a team, it will instead return a list
  36. of all users belonging to that particular team\.
  37. .IP \(bu 2
  38. edit:
  39. Edit a current team\.
  40. .RE
  41. .SH DETAILS
  42. .P
  43. \fBnpm team\fP always operates directly on the current registry, configurable from
  44. the command line using \fB\-\-registry=<registry url>\fP\|\.
  45. .P
  46. In order to create teams and manage team membership, you must be a \fIteam admin\fR
  47. under the given organization\. Listing teams and team memberships may be done by
  48. any member of the organizations\.
  49. .P
  50. Organization creation and management of team admins and \fIorganization\fR members
  51. is done through the website, not the npm CLI\.
  52. .P
  53. To use teams to manage permissions on packages belonging to your organization,
  54. use the \fBnpm access\fP command to grant or revoke the appropriate permissions\.
  55. .SH SEE ALSO
  56. .RS 0
  57. .IP \(bu 2
  58. npm help access
  59. .IP \(bu 2
  60. npm help 7 registry
  61. .RE