New Settings Logic - #160
Open
tuturd wants to merge 1 commit into
Open
Conversation
Suboyyy
approved these changes
Aug 27, 2026
Comment on lines
+26
to
+39
| export const settingDefinitions: SettingDefinition[] = [ | ||
| { key: 'preRegistration', label: 'Pré-inscription', column: 'pre_registration_open', roles: [] }, | ||
| { key: 'shotgun', label: 'Shotgun', column: 'shotgun_open', roles: [] }, | ||
| { key: 'sdi', label: 'SDI (Billetterie)', column: 'sdi_open', roles: [] }, | ||
| { key: 'wei', label: 'WEI (Billetterie + Tentes)', column: 'wei_open', roles: [] }, | ||
| { key: 'food', label: 'Nourriture (Billetterie)', column: 'food_open', roles: [] }, | ||
| { key: 'challenge', label: 'Challenges (Affichage des challenges)', column: 'chall_open', roles: [] }, | ||
| { | ||
| key: 'makerBattleGroup', | ||
| label: 'Groupes de défis TC & Branche (Affichage des groupes)', | ||
| column: 'maker_battle_group_open', | ||
| roles: [], | ||
| }, | ||
| ]; |
Member
There was a problem hiding this comment.
C'est pas un peu moche comme fonctionnement?...
Comment on lines
+78
to
+95
| export const validateShotgun = async (teamId: number) => { | ||
| await db.transaction(async (tx) => { | ||
| await tx.insert(teamShotgunSchema).values({ team_id: teamId }); | ||
| }); | ||
| }; | ||
|
|
||
| export const alreadyShotgun = async (teamId: number) => { | ||
| const shotgunTeam = await db | ||
| .select({ shotgunId: teamShotgunSchema.id }) | ||
| .from(teamShotgunSchema) | ||
| .where(eq(teamShotgunSchema.team_id, teamId)); | ||
|
|
||
| if (shotgunTeam[0]) { | ||
| return true; | ||
| } else { | ||
| return false; | ||
| } | ||
| }; |
Member
There was a problem hiding this comment.
Pourquoi la partie shotgun dans les settings du coup...
Member
Author
There was a problem hiding this comment.
hummm ça ça devait être du code qui trainait dans la partie "events", j'avais pas vu, je déplacerais
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.