Features: - Full RBAC with 3 roles (superadmin/manager/contributor) - Ownership tracking on posts, tasks, campaigns, projects - Task system: assign to anyone, filter combobox, visibility scoping - Team members merged into users table (single source of truth) - Post thumbnails on kanban cards from attachments - Publication link validation before publishing - Interactive onboarding tutorial with Settings restart - Full Arabic/English i18n with RTL layout support - Language toggle in sidebar, IBM Plex Sans Arabic font - Brand-based visibility filtering for non-superadmins - Manager can only create contributors - Profile completion flow for new users - Cookie-based sessions (express-session + SQLite)
25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
'use strict'
|
|
var util = require('util')
|
|
|
|
var User = exports.User = function User (msg) {
|
|
var err = new Error(msg)
|
|
Error.captureStackTrace(err, User)
|
|
err.code = 'EGAUGE'
|
|
return err
|
|
}
|
|
|
|
exports.MissingTemplateValue = function MissingTemplateValue (item, values) {
|
|
var err = new User(util.format('Missing template value "%s"', item.type))
|
|
Error.captureStackTrace(err, MissingTemplateValue)
|
|
err.template = item
|
|
err.values = values
|
|
return err
|
|
}
|
|
|
|
exports.Internal = function Internal (msg) {
|
|
var err = new Error(msg)
|
|
Error.captureStackTrace(err, Internal)
|
|
err.code = 'EGAUGEINTERNAL'
|
|
return err
|
|
}
|