How to Manage Multiple Authors and Roles in EmDash CMS

EmDash keeps two related but genuinely separate concepts apart: who has a login account and what they're permitted to do (a user, with a role), and who gets public credit on a piece of content (a byline). Understanding that split up front makes the rest of multi-author setup much simpler.
Table of Contents
- The Five Roles
- Inviting a New User
- Bylines: Public Credit, Separate From Login Access
- Assigning Multiple Bylines to One Post
- A Realistic Editorial Setup
- Frequently Asked Questions
- Does every byline need a matching user account?
- Can I change someone's role after they're already invited?
- What happens if a Contributor tries to publish content?
- Can a Subscriber write blog posts?
- The Bottom Line
The Five Roles
EmDash has five roles, from least to most access: Subscriber, Contributor, Author, Editor, Admin.
What each role can actually do, from the documented AI-tools permission table (the same permissions apply throughout the admin, not just via AI):
- Admin — everything, including schema changes (creating/deleting collections and fields) and site settings.
- Editor — all content, media, taxonomies, and menus across the whole site. Can view schema and read settings, but not change them.
- Author — their own content and media only.
- Contributor — their own content (drafts only, no publishing) and their own media.
- Subscriber — the lowest tier, without content-editing access (relevant mainly for sites with member-gated content or comments).
That progression matters for a real editorial team: a freelance writer should usually be a Contributor (drafts something, can't accidentally publish it live), a staff writer an Author, a managing editor an Editor, and only your actual site administrator an Admin.
Inviting a New User
Invite via the REST API, specifying the numeric role:
POST /_emdash/api/auth/invite
Content-Type: application/json
{
"email": "newwriter@example.com",
"role": 30
}Or through the admin panel's user management screen if you'd rather not script it — functionally identical, just a form instead of a direct API call.
Bylines: Public Credit, Separate From Login Access
A byline is EmDash's concept for "who gets credited publicly on this content" — a name, avatar, and bio that appears on a post, independent of whether that person has (or needs) a login account at all. This matters for a few real scenarios a pure "author = user" model can't handle cleanly:
- A guest contributor who wrote one piece and shouldn't get a permanent login account.
- A staff writer whose byline name differs from their internal account (a pen name, or a public-facing display name).
- Multiple credited contributors on one piece — a primary author plus a co-writer or editor credit — without granting every credited person write access to your CMS.
Assigning Multiple Bylines to One Post
A single content item can carry several ordered byline credits, with one marked as primary. In practice: when publishing a co-written post, add each contributor's byline in the content editor's author/byline field, and set which one is primary — that's the byline used for the main "By [Name]" display, while the others still get credited (commonly in a smaller "with contributions from" line, depending on how your templates render it).
A Realistic Editorial Setup
- Create byline profiles for every person who should get public credit, including guest writers without login accounts.
- Invite actual team members as users with the role matching their real responsibility (Contributor for occasional writers, Author for regular staff, Editor for the person who reviews and publishes).
- Link each user to their own byline where the identities should match, or keep bylines standalone for guest content.
- When publishing a multi-author piece, add every contributing byline and mark the lead writer's as primary.
Frequently Asked Questions
Does every byline need a matching user account?
No — that's the whole point of separating the two. A guest contributor can have a byline with no corresponding login user, while your actual CMS editors are users with roles governing what they can do in the admin.
Can I change someone's role after they're already invited?
Yes — role is a property of the user account, updatable by an Admin, and takes effect on their next admin panel action rather than requiring them to be reinvited.
What happens if a Contributor tries to publish content?
They can't — Contributor role is explicitly scoped to draft content only, with no publish permission. Publishing requires Author-level access or higher for that specific content, or an Editor/Admin doing it on their behalf.
Can a Subscriber write blog posts?
No — Subscriber is the lowest-access role and doesn't include content-editing permissions. It's relevant mainly for member/comment-gated features, not for editorial contributors.
The Bottom Line
EmDash's role system (Subscriber through Admin) controls what someone can actually do inside the CMS, while bylines control who gets public credit on content — deliberately decoupled so a guest writer doesn't need a login and a multi-author piece doesn't need every contributor to have publish access. Set both up according to your team's real editorial workflow rather than defaulting everyone to Admin out of convenience.




Comments