mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-21 02:24:09 -07:00
19 lines
453 B
TypeScript
19 lines
453 B
TypeScript
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright 2025 Google LLC
|
||
|
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
|
*/
|
||
|
|
|
||
|
|
import type { OpenDialogActionReturn, SlashCommand } from './types.js';
|
||
|
|
import { CommandKind } from './types.js';
|
||
|
|
|
||
|
|
export const permissionsCommand: SlashCommand = {
|
||
|
|
name: 'permissions',
|
||
|
|
description: 'Manage folder trust settings',
|
||
|
|
kind: CommandKind.BUILT_IN,
|
||
|
|
action: (): OpenDialogActionReturn => ({
|
||
|
|
type: 'dialog',
|
||
|
|
dialog: 'permissions',
|
||
|
|
}),
|
||
|
|
};
|