-
-
Save lessless/10403329 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Error: Attempted to handle event `didSetProperty` on <Seotool.Url:ember634:null> while in state root.deleted.saved. Called with {name: destination, oldValue: undefined, originalValue: undefined, value: undefined}. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.Url = DS.Model.extend Ember.Validations.Mixin, | |
address: DS.attr 'string' | |
destination: DS.attr 'string' | |
webmaster: DS.belongsTo 'webmaster' | |
url_type: DS.belongsTo 'url_type' | |
## |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.UrlNewRoute = Ember.Route.extend | |
actions: | |
save: -> | |
controller = @get('controller') | |
# webmaster url_type | |
url = @store.createRecord 'url', controller.getProperties('address destination domain'.w()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment