Skip to content

Commit

Permalink
Merge pull request #55 from GitGuardian/nriviere/add-category-propert…
Browse files Browse the repository at this point in the history
…y-to-commands

style: add category property to commands
  • Loading branch information
nriviere-gitguardian authored Dec 19, 2024
2 parents 831bf99 + c3ac8e4 commit 1916169
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,39 +46,47 @@
"commands": [
{
"command": "gitguardian.quota",
"title": "gitguardian: Show quota"
"title": "Show quota",
"category": "GitGuardian"
},
{
"command": "gitguardian.ignore",
"title": "gitguardian: Ignore last found incidents"
"title": "Ignore last found incidents",
"category": "GitGuardian"
},
{
"command": "gitguardian.authenticate",
"title": "gitguardian: Authenticate"
"title": "Authenticate",
"category": "GitGuardian"
},
{
"command": "gitguardian.logout",
"title": "gitguardian: logout"
"title": "Logout",
"category": "GitGuardian"
},
{
"command": "gitguardian.updateAuthenticationStatus",
"title": "gitguardian: Update authentication status"
},
{
"command": "gitguardian.showOutput",
"title": "Show Output"
"title": "Show Output",
"category": "GitGuardian"
},
{
"command": "gitguardian.openSidebar",
"title": "Open Sidebar"
"title": "Open Sidebar",
"category": "GitGuardian"
},
{
"command": "gitguardian.openProblems",
"title": "Open Problems"
"title": "Open Problems",
"category": "GitGuardian"
},
{
"command": "gitguardian.refreshQuota",
"title": "Refresh Quota",
"category": "GitGuardian",
"icon": {
"light": "images/refresh-light.svg",
"dark": "images/refresh-dark.svg"
Expand All @@ -99,19 +107,19 @@
{
"type": "webview",
"id": "gitguardianView",
"name": "gitguardian"
"name": "GitGuardian"
},
{
"type": "webview",
"id": "gitguardianRemediationMessageView",
"name": "remediation message",
"name": "Remediation message",
"collapsed": true,
"when": "false"
},
{
"type": "webview",
"id": "gitguardianQuotaView",
"name": "quota",
"name": "Quota",
"collapsed": true,
"when": "isAuthenticated == true"
}
Expand Down

0 comments on commit 1916169

Please sign in to comment.