Skip to content

Commit e5f62a8

Browse files
authored
feat: add octopost backend to projects in pulls command (#57)
1 parent 0744a7d commit e5f62a8

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.env
22
dist/
33
node_modules
4+
.idea

src/commands/pulls/pulls.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export async function autocomplete(interaction: AutocompleteInteraction) {
3434
const focused = interaction.options.getFocused(true)
3535

3636
const choices = [
37-
{ name: 'Octopost', value: 'octopost' },
37+
{ name: 'Octopost Frontend', value: 'octopost' },
38+
{ name: 'Octopost Backend', value: 'octopost-backend' },
3839
{ name: 'PetDex Frontend', value: 'pet-dex-frontend' },
3940
{ name: 'PetDex Backend', value: 'pet-dex-backend' },
4041
{ name: 'Github bot', value: 'hatbot-discord' },

0 commit comments

Comments
 (0)