You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
306 B

/**
* Copyright (c) 2013 Yahoo! Inc. All rights reserved.
*
* Copyrights licensed under the MIT License. See the accompanying LICENSE file
* for terms.
*/
var PERMISSIONS = {
READ : 1,
WRITE : 2,
CREATE : 4,
DELETE : 8,
ADMIN : 16,
ALL : 31
};
module.exports = PERMISSIONS;