Fixed invite resend

refs af4bd52b55

- `record.belongsTo().id` is an older Ember Data concept so it was returning `undefined`
- the `role` relationship is set up as `async: false` and is always output as an embedded record by our API so we're safe to use `this.role.id` without dealing with any async lookup
This commit is contained in:
Kevin Ansfield 2020-01-07 13:45:06 +00:00
parent af4bd52b55
commit cc0aa73355
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ export default Model.extend({
resend() {
let inviteData = {
email: this.email,
role_id: this.belongsTo('role').id
role_id: this.role.id
};
let inviteUrl = this.get('ghostPaths.url').api('invites');