1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-25 18:32:20 -05:00

added private key model

This commit is contained in:
Tankred Hase 2013-05-19 01:36:01 +02:00
parent 0cb5214b94
commit 8326e21b1b

View File

@ -1,22 +1,22 @@
(function() {
'use strict';
app.model.SecretKey = Backbone.Model.extend({
app.model.PrivateKey = Backbone.Model.extend({
defaults: {
_id: null,
userId: null,
encryptedKey: null,
keyIV: null
iv: null
},
initialize: function() {}
});
app.model.SecretKeyCollection = Backbone.Collection.extend({
app.model.PrivateKeyCollection = Backbone.Collection.extend({
model: app.model.SecretKey
model: app.model.PrivateKey
});