// Copyright (c) Abstract Machines // SPDX-License-Identifier: Apache-2.0 package cli_test // CRUD and common commands const ( createCmd = "create" updateCmd = "update" getCmd = "get" enableCmd = "enable" disableCmd = "disable" freezeCmd = "freeze" delCmd = "delete" ) // Users commands const ( tokCmd = "token" refTokCmd = "refreshtoken" profCmd = "profile" resPassReqCmd = "resetpasswordrequest" resPassCmd = "resetpassword" passCmd = "password" ) // Clients commands const ( connCmd = "connect" disconnCmd = "disconnect" usersCmd = "users" ) // Messages commands const sendCmd = "send" // Invitations commands const ( acceptCmd = "accept" rejectCmd = "reject" userCmd = "user" domainCmd = "domain" ) // Role commands const ( rolesCmd = "roles" actionsCmd = "actions" availableActionsCmd = "available-actions" addCmd = "add" listCmd = "list" membersCmd = "members" ) // Bootstrap commands const ( updCmd = "update" rmCmd = "remove" whitelistCmd = "whitelist" bootStrapCmd = "bootstrap" )