Skip to content

Commit

Permalink
fix order of arguments for path-service
Browse files Browse the repository at this point in the history
  • Loading branch information
meirish committed Apr 5, 2019
1 parent f1a4bd9 commit 7548bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/routes/vault/cluster/secrets/backend/credentials.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default Route.extend({
}
let modelType = 'ssh-otp-credential';
let owner = getOwner(this);
return this.pathHelp.getNewModel(modelType, backend, owner);
return this.pathHelp.getNewModel(modelType, owner, backend);
},

model(params) {
Expand Down

0 comments on commit 7548bcd

Please sign in to comment.