devbug/app/models/v1/Snippet.model.js

21 lines
484 B
JavaScript
Raw Normal View History

2019-07-23 21:44:40 +00:00
/*
* Snippet Model
* -------------------------------------------------------------
* Put some description here!
*/
const uuid = require('uuid/v4')
const Snippet = {
2019-07-24 14:52:58 +00:00
name: String,
2019-07-23 21:44:40 +00:00
user_id: String,
archived: { type: Boolean, default: false },
data: String,
shared_user_ids: [String],
edit_user_ids: [String],
uuid: { type: String, default: uuid },
public_share: String,
2019-07-24 14:52:58 +00:00
mode: String,
project_id: String,
2019-07-23 21:44:40 +00:00
}
2019-07-24 14:52:58 +00:00
module.exports = exports = Snippet