Skip to content

Commit

Permalink
Rename camelcase field
Browse files Browse the repository at this point in the history
  • Loading branch information
RomaricMourgues committed Mar 28, 2023
1 parent f4a0799 commit db70383
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export type ApplicationIdentity = {
website: string;
categories: string[];
compatibility: "twake"[];
pluginRepo?: string;
repository?: string;
};

export type ApplicationPublication = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,13 +148,13 @@ export class ApplicationController
}

// SYNC PLUGINS
if (app.identity.pluginRepo) {
if (app.identity.repository) {
try {
axios
.post(
`${pluginsEndpoint}/add`,
{
gitRepo: app.identity.pluginRepo,
gitRepo: app.identity.repository,
pluginId: entity.getApplicationObject().id,
pluginSecret: entity.getApplicationObject().api.private_key,
},
Expand Down

0 comments on commit db70383

Please sign in to comment.