Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit 11d7ea2

Browse files
author
antblood
committed
fix: hid organization commands
1 parent 686813b commit 11d7ea2

4 files changed

+8
-0
lines changed

src/commands/add-member-to-organization.ts

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ mutation AddOrganizationMember($member: AddOrgMember!) {
1111
`
1212

1313
export default class AddMemberToOrganization extends BaseCommand {
14+
static hidden = true
15+
1416
static description = 'Add a Member to an Organization'
1517

1618
static examples = [

src/commands/create-organization.ts

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ mutation CreateOrganization($name: String!) {
1111
`
1212

1313
export default class CreateOrganization extends BaseCommand {
14+
static hidden = true
15+
1416
static description = 'Create an Organization'
1517

1618
static examples = [

src/commands/list-organizations.ts

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ query GetOrganizations {
2626
`
2727

2828
export default class ListOrganizations extends BaseCommand {
29+
static hidden = true
30+
2931
static description = 'List Organizations associated with the user'
3032

3133
static examples = [

src/commands/remove-member-from-organization.ts

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ mutation DeleteOrganizationMember($member: DeleteOrgMember!) {
1212
`
1313

1414
export default class DeleteMemberFromOrganization extends BaseCommand {
15+
static hidden = true
16+
1517
static description = 'Remove a Member from Organization'
1618

1719
static examples = [

0 commit comments

Comments
 (0)