12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- export const FETCH_CONFIG = {
- headers: {
- 'Accept': 'application/json',
- 'Content-Type': 'application/json'
- }
- }
-
- export const debug = { // copied from html-document => outdated
- config: {
- label: 'Thread',
- slug: 'thread',
- faIcon: 'comments-o',
- hexcolor: '#ad4cf9',
- creationLabel: 'Write a thread',
- domContainer: 'appFeatureContainer',
- apiUrl: 'http://localhost:6543/api/v2',
- mockApiUrl: 'http://localhost:3001',
- apiHeader: {
- 'Accept': 'application/json',
- 'Content-Type': 'application/json'
- // 'Authorization': 'Basic ' + btoa(`${'admin@admin.admin'}:${'admin@admin.admin'}`)
- },
- availableStatuses: [{
- label: 'Open',
- slug: 'open',
- faIcon: 'square-o',
- hexcolor: '#3f52e3',
- globalStatus: 'open'
- }, {
- label: 'Validated',
- slug: 'closed-validated',
- faIcon: 'check-square-o',
- hexcolor: '#008000',
- globalStatus: 'closed'
- }, {
- label: 'Cancelled',
- slug: 'closed-unvalidated',
- faIcon: 'close',
- hexcolor: '#f63434',
- globalStatus: 'closed'
- }, {
- label: 'Deprecated',
- slug: 'closed-deprecated',
- faIcon: 'warning',
- hexcolor: '#ababab',
- globalStatus: 'closed'
- }],
- translation: {en: {}, fr: {}}
- },
- loggedUser: { // @FIXME this object is outdated
- user_id: 1,
- username: 'Smoi',
- firstname: 'Côme',
- lastname: 'Stoilenom',
- email: 'osef@algoo.fr',
- avatar_url: 'https://avatars3.githubusercontent.com/u/11177014?s=460&v=4',
- lang: 'en'
- },
- content: {
- author: {
- avatar_url: null,
- public_name: 'Global manager',
- user_id: 1 // -1 or 1 for debug
- },
- content_id: 48, // 1 or 22 for debug
- content_type: 'thread',
- created: '2018-06-18T14:59:26Z',
- current_revision_id: 11,
- is_archived: false,
- is_deleted: false,
- label: 'Current Menu',
- last_modifier: {
- avatar_url: null,
- public_name: 'Global manager',
- user_id: 1
- },
- modified: '2018-06-18T14:59:26Z',
- parent_id: 2,
- raw_content: '',
- show_in_ui: true,
- slug: 'current-menu',
- status: 'open',
- sub_content_types: ['thread', 'html-document', 'file', 'folder'],
- workspace_id: 1
- },
- timeline: [] // timelineDebugData
- }
|