mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-23 04:29:21 +00:00
42 lines
399 B
JavaScript
42 lines
399 B
JavaScript
/**
|
|
* Posts visibility levels
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
ComunicWeb.components.posts.visibilityLevels = {
|
|
|
|
/**
|
|
* Private
|
|
*/
|
|
private: {
|
|
//Icon
|
|
icon: "fa-user",
|
|
|
|
//Name
|
|
name: "Private"
|
|
},
|
|
|
|
/**
|
|
* Friends
|
|
*/
|
|
friends: {
|
|
//Icon
|
|
icon: "fa-users",
|
|
|
|
//Name
|
|
name: "Friends"
|
|
},
|
|
|
|
/**
|
|
* Public
|
|
*/
|
|
public: {
|
|
//Icon
|
|
icon: "fa-globe",
|
|
|
|
//Name
|
|
name: "Public"
|
|
}
|
|
|
|
} |