From 7aca0db82c99c91b6286915d0348c93cd74cd025 Mon Sep 17 00:00:00 2001 From: Benjamin ter Kuile Date: Mon, 22 Oct 2018 12:18:04 -0300 Subject: [PATCH] Add identifier to organization for contract preservation --- app/models/panda/organization.coffee | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/models/panda/organization.coffee b/app/models/panda/organization.coffee index f86b084..429d81c 100644 --- a/app/models/panda/organization.coffee +++ b/app/models/panda/organization.coffee @@ -6,8 +6,9 @@ validator = lookupValidator(ModelValidations) import config from 'ember-get-config' export default DS.Model.extend - name: DS.attr('string') - logo: DS.attr() + name: DS.attr('string') + identifier: DS.attr('string') + logo: DS.attr() changeset: (-> new Changeset @, validator, ModelValidations ).property()