feat: replace list command with files command to manage user files
This commit is contained in:
parent
b6e24c517b
commit
ceabfb8b3a
2 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ import { formatSize } from "../lib/files";
|
||||||
import { StereoFile } from "../types/files";
|
import { StereoFile } from "../types/files";
|
||||||
|
|
||||||
export const data = new SlashCommandBuilder()
|
export const data = new SlashCommandBuilder()
|
||||||
.setName("list")
|
.setName("files")
|
||||||
.setDescription("list all of your files")
|
.setDescription("list all of your files")
|
||||||
.addIntegerOption(option =>
|
.addIntegerOption(option =>
|
||||||
option.setName("page")
|
option.setName("page")
|
|
@ -1,9 +1,9 @@
|
||||||
import list from "./list";
|
import files from "./files";
|
||||||
import register from "./register";
|
import register from "./register";
|
||||||
import user from "./user";
|
import user from "./user";
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
user,
|
user,
|
||||||
register,
|
register,
|
||||||
list
|
files
|
||||||
]
|
]
|
Loading…
Add table
Add a link
Reference in a new issue