Skip to content

Commit

Permalink
chore(Services): ✏️ resolve dependencies as snake_case instead of cam…
Browse files Browse the repository at this point in the history
…elCase
  • Loading branch information
juamber-rgs committed Nov 25, 2023
1 parent 52edd19 commit 10db022
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"App",
"Experiences",
"SocialNetworks",
"Translations"
"Translations",
"Services"
],
"cSpell.words": [
"cascadeselect",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export class CertificateService extends CommonService<Certificate> {
super(
supabaseClient,
certificateNames.name(Naming.SNAKE_CASE, NumberMode.PLURAL),
'*, "certificateType": "certificate_types" ( * ), "certificateGroup": "certificate_groups" ( * ), "company": "companies" ( * )',
'*, "certificateType": "certificate_types" ( * ), "certificateGroup": "certificate_groups" ( * ), "company": "companies" ( * )',
'*, "certificate_type": "certificate_types" ( * ), "certificate_group": "certificate_groups" ( * ), "company": "companies" ( * )',
'*, "certificate_type": "certificate_types" ( * ), "certificate_group": "certificate_groups" ( * ), "company": "companies" ( * )',
'name_translations',
);
}
Expand Down
4 changes: 2 additions & 2 deletions src/app/backoffice/tables/skill/services/skill.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export class SkillService extends CommonService<Skill> {
super(
supabaseClient,
skillNames.name(Naming.SNAKE_CASE, NumberMode.PLURAL),
'*, skillType: "skill_types" ( * )',
'*, skillType: "skill_types" ( * )',
'*, skill_type: "skill_types" ( * )',
'*, skill_type: "skill_types" ( * )',
);
}
}

0 comments on commit 10db022

Please sign in to comment.