ducky/web

Paddy 2015-06-30 Parent:99a43a6d1d30 Child:791aec3eb17b

10:ef386518fa14 Go to Latest

ducky/web/src/models/profile.js

Update our config with still-silly values. Our config file still just has local-only values that don't actually mean anything, but let's keep them updated, just for giggles. We changed the port subscriptionsd listens on, so we updated to match that. We also needed to generate a new client, so its ID and secret are now in the config file as well. No doubt they'll be replaced soon, anyways.

History
paddy@0 1 import Model from 'ampersand-model'
paddy@0 2
paddy@0 3 export default Model.extend({
paddy@0 4 props: {
paddy@0 5 'id': 'string',
paddy@0 6 'name': 'string',
paddy@0 7 'created': 'date',
paddy@0 8 'last_seen': 'date',
paddy@0 9 },
paddy@0 10 })