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)
26 lines
505 B
YAML
26 lines
505 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- "0.10"
|
|
- 0.12
|
|
- iojs
|
|
- 4
|
|
- 5
|
|
env:
|
|
- CXX=g++-4.8
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
notifications:
|
|
email:
|
|
- andris@kreata.ee
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/0ed18fd9b3e529b3c2cc
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|
|
on_start: false # default: false
|