Hyphen User Guides

Editorial & Content System

Complete guide to creating, reviewing, approving, and publishing content on the Hyphen platform

Version 1.7|Updated 2026-06-23|Editorial Teams, Publishing Teams, Content Managers, Operations

1. Simple Feature Overview

The Editorial & Content System is where your team creates, reviews, approves, and publishes all written and multimedia content on the Hyphen platform. It covers the full journey of content — from an author's first draft all the way to a live article on the Reader Portal.

Under the hood, the system spans three applications: the Admin Console (Next.js, where you author and manage everything), Strapi CMS (the headless content store that the Reader Portal reads from), and the Reader Portal (Next.js, the public website). A local PostgreSQL database (accessed through Prisma) holds version history, the editorial-workflow records, the media library, and a synced cache of articles for fast admin queries. The diagram below shows the high-level journey a piece of content takes; the rest of this guide explains each stage in detail.

The content lifecycle: authored in the Admin Console, moved through the editorial workflow, published into Strapi, and served to readers via the Reader Portal.

What You Can Do

CapabilityWhat It Means
Create ArticlesWrite fiction, poetry, essays, interviews, and news using a rich text editor with images, audio, and video
Manage AuthorsSet up author profiles with bios, photos, social links, and specializations
Editorial WorkflowMove content through a structured review process — draft → triage → sub-editor review → author revision → final review → publish
Media LibraryUpload, organize, and reuse images, audio files, video, and documents across all content
Magazine IssuesGroup articles into themed issues with cover images, editor notes, and structured table of contents
CollectionsCurate themed reading lists like "Best of 2025" or "Summer Fiction"
NewslettersCreate and manage newsletter editions with content and subscriber information
EventsSet up literary events, workshops, and webinars with dates, locations, and RSVP tracking
PodcastsManage podcast shows and episodes with audio files, show notes, and platform links
SchedulingSet content to publish automatically at a future date and time
Version HistoryTrack every change made to an article and roll back to a previous version if needed
Access ControlSet articles as free, restricted, premium, or subscriber-only

How Content Reaches Readers

  1. An author or editor creates content in the Admin Console (stored in Strapi, with a cached copy and version history in PostgreSQL).
  2. The content moves through the Editorial Workflow for review and approval (tracked in the submissions and workflow_events tables).
  3. An editor or the publishing team publishes or schedules the content.
  4. Publishing flips the article's published layer in Strapi (POST /actions/publish).
  5. The Reader Portal picks up the new content within approximately 60 seconds (Next.js ISR — Incremental Static Regeneration).
  6. Readers see it on article pages, section pages, the homepage, search, author pages, and any collection or issue it belongs to.

Two ways content enters the system. Most short content is created directly in Content → New Article. Longer manuscripts (often from external contributors) come through the Editorial Workflow as submissions — manuscript files in Google Drive that are reviewed, edited, then converted into an article at the publishing stage. Both paths end at the same place: a published Strapi article on the Reader Portal.


How It Works (Behind the Scenes)

This section explains the end-to-end data flow so you understand exactly what happens when you click Save or Publish.

The three applications and one database

LayerWhat it isRole in editorial
Admin ConsoleNext.js app on port :3000Where you author articles, manage authors/sections/tags/media, and run the editorial workflow. Calls the /api/... routes.
Strapi CMSHeadless CMS on port :1337The primary store for article content (title, body HTML, status, access level, relations). The Reader Portal reads from Strapi, not from the admin database.
PostgreSQL (via Prisma)The admin databaseStores version history (article_versions), the editorial workflow (submissions, workflow_events, document_versions), the media library (media_assets), content-entity records (issues, collections, events, podcasts, newsletters), and a synced cache of articles (articles table) for fast list/filter queries.
Reader PortalNext.js app on port :3002The public website. Reads published content from Strapi and renders article pages at /article/[slug].

What happens when you create or edit an article

When you save an article in the Admin Console, the request goes to POST /api/articles (create) or PUT /api/articles/[id] (update). The server:

  1. Writes the article to Strapi as the system of record. The Strapi document ID becomes the article's id.
  2. Calculates readTime from the word count (≈200 words/minute).
  3. On update, if title, content, or excerpt changed, writes a new row to the article_versions table in PostgreSQL with an auto-incrementing version number — this is your version history.
  4. If you set a Magazine visibility tier (magazineAccess), the server forces the accessLevel to a canonical value (see Configuration Reference) and rejects inconsistent combinations with HTTP 400.

Editorial status vs. published state. In Strapi, an article's editorial state is stored in a field called articleStatus (draft / pending_review / approved / archived). Whether the article is actually live is a separate flag (Strapi's draft-and-publish publishedAt). The admin "Published" and "Modified" labels you see are derived — an article is "Published" when it has a live published layer in Strapi. Publishing is allowed directly from draft, pending_review, or approved (there is no mandatory approval gate in the article editor itself).

What happens when you publish

StepWhat happensWhere
You set Status → Published (no future schedule)Server calls Strapi's publish action; publishedAt is set; publishedByName records who published itPUT /api/articles/[id] → Strapi
You set a future Scheduled Publish DateThe article stays as draft in Strapi with scheduledFor saved; it is not live yetarticles table + Strapi draft
The scheduled time arrivesThe publish-scheduled cron runs (every ~5 min), publishes the Strapi article, and flips status to PublishedCron → Strapi
Reader Portal refreshWithin ~60 s, ISR regenerates the affected pages and the article appearsReader Portal

Data-flow diagram

End-to-end data flow for an article. Strapi is the system of record for content; PostgreSQL holds version history and a synced read cache; cron jobs handle scheduled publishing and cache sync.

Content entities (issues, collections, events, podcasts, newsletters)

Unlike articles (which live in Strapi first), content entities are authored in PostgreSQL first and pushed to Strapi by a cron job:

  • You create/edit them in Content Entities → Issues / Collections / Events / Podcasts / Newsletters (stored in the issues, collections, events, podcasts, podcast_episodes, newsletter_editions tables).
  • The sync-entities cron (every ~15 min) finds-or-creates the matching Strapi entry by slug and publishes it when its status is published or featured.
  • The Reader Portal then renders them at /issue/[slug], /newsletters/[slug], etc.

Why the 60-second delay? The Reader Portal uses Next.js ISR — pages are statically cached and regenerated on a timer. After publishing, wait up to ~60 seconds, then hard-refresh.


The Editorial Workflow Explained

The Editorial Workflow is a state machine: every submission is in exactly one status at a time, and it can only move between statuses through defined transitions. Each transition checks a specific permission, so only the right role can perform each step. This guarantees a consistent, auditable review process.

Every transition writes a row to the workflow_events table (event types include status_change, assignment, reassignment, note_added, author_response, rejection, route_back, cancellation, retraction, soft_delete) — this is the submission's permanent audit trail and timeline.

The states

State (code)Status enum valueLabelWho actsTerminal?
S0S0_INVITEDInvitedAuthor (responds to invitation)No
S1S1_AWAITING_TRIAGEAwaiting TriageChief EditorNo
S2S2_ASSIGNED_TO_SUBEDITORAssignedSub-EditorNo
S3S3_SUBEDITOR_REVIEWIn ReviewSub-EditorNo
S4S4_AWAITING_AUTHOR_REVIEWWith AuthorAuthorNo
S5S5_AUTHOR_REVISIONAuthor RevisingAuthorNo
S6S6_AWAITING_FINAL_REVIEWFinal ReviewChief EditorNo
S7S7_READY_FOR_PUBLISHINGReady to PublishPublishing TeamNo
S8S8_PUBLISHING_IN_PROGRESSTypesettingPublishing TeamNo
S9S9_SCHEDULEDScheduledSystem (cron)No
S10S10_PUBLISHEDPublishedYes
SXSX_REJECTED_WITHDRAWNRejectedYes
SXSX_CANCELLEDCancelledYes
SXSX_RETRACTEDRetractedChief Editor (pulls a published item)Yes

The transitions

Each arrow below is a real transition with its own permission gate. The most important "forward" path and the "route-back" paths are shown.

The editorial workflow state machine. Each transition enforces a role-specific permission. Route-back transitions (S6→S3, S7→S6) let editors send work backwards; reject/cancel/retract are terminal end-of-life states.

Who does what

RoleTheir stage(s)Key transitions they own
AuthorS0, S4, S5invitation_submit, author_resubmit, author_accept
Chief EditorS1, S6assign, reject, route_back_to_subeditor, approve_publishing, retract
Sub-EditorS2, S3start_review, send_to_author, submit_to_chief
Publishing TeamS7, S8, S9start_typesetting, schedule, publish_now, publish, route-backs to editorial
System (cron)S9 → S10publish (the publish-scheduled cron auto-publishes when the scheduled time arrives)

Four roles, no Designer. The workflow has exactly four acting roles — Author, Sub-Editor, Chief Editor, and Publishing Team. There is no separate Designer role, and there is no intermediate "typeset review" / S6B state. The publishing team owns the entire publishing leg end to end.

Typesetting is a required gate before publishing. From Ready for Publishing (S7), the publishing team must first Start Typesetting to move the item to Publishing in Progress (S8). The Publish Now and Schedule actions are only available from S8 — you cannot publish or schedule straight out of the Ready queue. This guarantees every item passes through typesetting before it goes live.

End-of-life states

  • Reject (reject) — from Triage (S1), Review (S3), or Final Review (S6). Requires a reason. The submission becomes SX_REJECTED_WITHDRAWN.
  • Cancel (cancel) — for a stuck submission in S2/S4/S5/S7/S8/S9. Requires a reason. Becomes SX_CANCELLED.
  • Retract (retract) — pulls a published (S10) item out of circulation. Requires a reason. Unpublishes the Strapi article and marks it SX_RETRACTED.
  • Delete — Submissions in S0/S1 are hard-deleted; submissions already in a terminal state (rejected/cancelled/retracted) are soft-deleted (deletedAt, deletionReason recorded). Active in-flight submissions cannot be deleted — cancel, reject, or retract them first.

Submissions vs. the article record. A submission carries the manuscript through review (its file lives in Google Drive; document revisions are tracked in document_versions). At the publishing stage, Prepare Article imports the Google Doc HTML and creates/updates the actual Strapi article. So the workflow produces an article; it is not the article itself until that import step.


2. Who Should Use This Feature

RoleWhat You'll Do
AuthorSubmit content, respond to revision requests, view your submissions and their status
Sub-EditorReview assigned submissions, leave feedback, send to author for revision or forward to chief editor
Chief EditorTriage incoming submissions, assign sub-editors, approve or reject content for publication
Publishing TeamManage the publishing queue — typeset, schedule, and publish approved content
Content ManagerCreate and manage articles directly, organize media, manage taxonomy (sections/tags)
Operations / AdminSet up authors, configure sections, manage permissions, oversee the full content lifecycle

3. Before You Begin

Before your team can start creating and publishing content, make sure the following are in place:

Prerequisites Checklist

StepWhat to CheckWhere to Check
1. Admin accountYou have an Admin Console login with the right role (Author, Sub-Editor, Chief Editor, Publishing, or Admin)Ask your Admin to create your account under Settings → Admin Users
2. Sections existAt least one content section is set up (e.g., Fiction, Poetry, Essays, Interviews, News)Content → Sections in Admin Console
3. Tags existCommon tags are created for categorizing content (e.g., "short story", "memoir", "translation")Content → Tags in Admin Console
4. Authors existAuthor profiles are created for anyone whose content will be publishedAuthors in the Admin Console sidebar
5. Media storageMedia library is connected and working (S3/CDN configured)Media Library — try uploading a test image
6. Strapi CMSStrapi is running and connected (this is the backend that serves content to readers)Ask your DevOps team to confirm
7. Reader PortalThe Reader Portal is deployed and accessibleVisit your Reader Portal URL to confirm
8. Page templatesHomepage and section pages have templates configuredSee the Page Template System User Guide
9. EmailIf you want workflow notification emails, an email account must be configuredSettings → Email → Accounts — click an account, then Verify connection to confirm it works. The editorial_workflow purpose at Settings → Email → Purposes must also be mapped to a primary account. See the Email System Guide.

Tip: If you're setting up the platform for the first time, work through these in order. Authors and sections should be created before articles.


4. Key Terms in Simple Language

TermWhat It Means
ArticleAny piece of content — a story, poem, essay, interview, or news item
Content TypeThe category of writing: Fiction, Poetry, Essay, Interview, or News
SectionA major division of the magazine (e.g., Fiction, Poetry, Essays). Each article belongs to one section
TagA keyword or topic label attached to articles for discovery (e.g., "memoir", "translation", "debut")
Access LevelWho can read the article: Free (everyone), Restricted Free (registered users), Premium Limited (limited preview for non-subscribers), or Subscriber Only (full paywall)
DraftAn article that is being written or edited. Not visible to readers
Pending ReviewAn article submitted for editorial review. Not visible to readers
PublishedAn article that is live and visible to readers on the Reader Portal
ArchivedAn article removed from active display but still stored in the system
ScheduledAn article set to publish automatically at a future date/time
SubmissionAn article entered into the editorial workflow for formal review
TriageThe first step in editorial workflow where the chief editor decides what to do with a new submission
Sub-EditorA reviewer assigned to evaluate and improve a submission before it reaches the chief editor
RevisionWhen an article is sent back to the author for changes based on editorial feedback
Featured ImageThe main image displayed with an article — appears in listings, cards, and at the top of the article page
SlugThe URL-friendly version of a title (e.g., "the-summer-garden" for an article titled "The Summer Garden")
VersionA saved snapshot of an article at a point in time. You can view past versions and roll back
CollectionA curated group of articles organized around a theme
IssueA magazine issue that groups articles together with a cover, editor's note, and structured layout
Hero SectionThe large, prominent area at the top of a page that showcases featured content
StrapiThe content management system (CMS) that stores and serves published content to the Reader Portal

5. Step-by-Step Setup Guide

Article list page
1
2
3
The content list shows all articles with status, author, and date filters.
1Search bar — find articles by title, author, or content
2Create New Article button
Filter toolbar — filter by status, section, author, and date range
3Article rows with status badges, author, section, and date

5.1 Set Up Authors

Every article needs an author. Set up author profiles before creating articles.

To create a new author:

  1. In the Admin Console sidebar, click Authors.

  2. Click the New Author button in the top-right corner.

  3. Fill in the author profile:

    FieldRequired?What to Enter
    NameYesThe author's full display name
    EmailYesThe author's email address
    PhotoRecommendedUpload or paste URL for the author's profile photo
    Short BioRecommendedA 1-2 sentence bio that appears next to articles
    Long BioOptionalA detailed biography for the author's profile page
    LocationOptionalCity or country
    WebsiteOptionalAuthor's personal website URL
    Social LinksOptionalTwitter, Instagram, LinkedIn, Facebook handles
    LanguagesRecommendedLanguages the author writes in (select all that apply)
    SpecializationsRecommendedCheck all applicable types: Fiction, Poetry, Essay, etc.
    StatusYesToggle Active (default) or Inactive
  4. Click Save to create the author profile.

To view an author's profile and published works:

  1. Go to Authors and click on any author's name or card.
  2. The author profile page has three tabs:
    • Overview — Statistics (total articles, translations, views, comments)
    • Timeline — Activity history showing recent actions
    • Works — All published works with filters for "All", "As Author", and "As Translator"

To edit or deactivate an author:

  1. Go to Authors and click Edit on the author's card or row.
  2. Make your changes and click Save.
  3. To deactivate an author (e.g., if they are no longer contributing), toggle the Status to Inactive. Their existing articles remain published.
Authors grid view
The authors list displays all registered authors with profile photos, specializations, and quick-access actions.

5.2 Set Up Sections and Tags

Sections and tags organize your content so readers can browse by category and topic.

Sections

Sections are the main divisions of your magazine. Typical sections include:

  • Fiction
  • Poetry
  • Essays
  • Interviews
  • News

Sections are set up in Content → Sections (or through Strapi if managed there). Each article belongs to exactly one section.

Tags

Tags are flexible labels applied to articles for additional categorization. Examples: "short story", "memoir", "debut author", "translation", "award winner".

To manage tags:

  1. Go to Content → Tags in the Admin Console.
  2. Click New Tag to create a tag.
  3. Enter a Name and an optional Description.
  4. Click Save.

Tip: You can also create new tags on the fly when editing an article — the tag field supports "create new" directly.


5.3 Upload Media to the Media Library

The Media Library stores all images, audio files, videos, and documents used across your content.

To upload files:

  1. In the Admin Console sidebar, click Media Library.
  2. Click the Upload Files button.
  3. Either:
    • Drag and drop files into the upload area, or
    • Click Browse to select files from your computer
  4. For each uploaded file, fill in:
    • Alt Text — A description for accessibility (important for images)
    • Caption — Optional caption displayed below the image
    • Credit — Photographer or source credit
    • Tags — Keywords for finding the file later
    • Folder — Select a folder to organize the file
  5. Click Upload to save.

To organize your media:

  • Create folders: Click the folder icon and name your new folder (e.g., "Issue 12 Covers", "Author Photos")
  • Filter by type: Use the filter pills at the top — Images, Audio, Video, Documents
  • Search: Use the search bar to find files by name
  • Sort: Sort by date, filename, or file size
  • Bulk select: Check multiple files to delete them together

To use media in an article:

When creating or editing an article, click the Featured Image picker. This opens the Media Library where you can:

  • Select an existing image
  • Upload a new image directly
  • Set alt text and caption for the selected image
Media library
The media library lets you upload, organize, and reuse images, audio, and documents across all content.

5.4 Create and Edit an Article

To create a new article:

  1. In the Admin Console sidebar, click Content.
  2. Click the New Article button in the top-right corner.
  3. Fill in the article form. The form has several sections:

Basic Information:

FieldRequired?What to Enter
TitleYesThe article's headline
ExcerptRecommendedA short summary (1-3 sentences) shown in article cards and listings
Content TypeYesSelect one: Fiction, Poetry, Essay, Interview, or News
ContentYesThe full article text. Use the rich text editor for formatting — bold, italic, headings, block quotes, links, embedded images, etc.

Featured Image:

FieldRequired?What to Enter
ImageRecommendedClick to open the Media Picker and select or upload an image
Alt TextRecommendedDescribe the image for accessibility
CaptionOptionalCaption displayed below the featured image

Author & Translator:

FieldRequired?What to Enter
AuthorYesUse the Author Picker to search and select the author
TranslatorOptionalIf this is a translation, select the translator

Publishing Settings:

FieldRequired?What to Enter
StatusYesDraft (default) — save without publishing. Pending Review — submit for editorial review. Published — publish immediately (if you have permission)
Access LevelYesFree (default), Restricted Free, Premium Limited, or Subscriber Only. Hidden when Article visibility is set to a Magazine option — see below.
Article visibilityYesPublic — appears in home, sections, search (default), Magazine — registered readers only (hidden from public listings), or Magazine — subscribers only (hidden from public listings). Use a Magazine option when this article belongs inside a magazine issue and should not appear on the home or section pages. See Magazine Access tier below.
SectionYesSelect the section this article belongs to (e.g., Fiction, Poetry)
TagsRecommendedSelect existing tags or type to create new ones
Scheduled Publish DateOptionalSet a future date/time for automatic publication

Conditional Media (shown based on content type):

FieldWhen ShownWhat to Enter
YouTube Video URLVideo contentPaste the YouTube video URL
Audio File URLAudio/Podcast contentURL to the audio file
Episode NumberPodcast contentPodcast episode number
SeasonPodcast contentPodcast season number
DurationAudio/Video contentLength of the recording

SEO (collapsible section):

FieldRequired?What to Enter
Meta TitleOptionalCustom page title for search engines (defaults to article title)
Meta DescriptionOptionalCustom description for search engine results
  1. Click Save to save the article.

Magazine Access tier

When an article is part of a magazine issue, the way readers find and read it changes. Use the Article visibility dropdown in Publishing Settings to control this.

Quick rule: if you want the article to live only inside a magazine issue — never on the home page, never on a section page, never in search results — pick one of the two Magazine options. The standard Access Level field disappears because the magazine tier handles read access.

Magazine access can be set on the Issue Editor. For articles bound to an issue, the access tier can be set on the issue rather than the article: the Issue Editor has a "Default access for articles in this issue" setting plus a per-article Access override on each Table-of-Contents row. The effective tier resolves as TOC override → issue default → article's own access level, against the four-tier ladder (Free / Restricted Free / Premium Limited / Subscriber Only). The Article visibility dropdown described here also works. See Paywall & Access → Magazine Issue Access Tiers and the Magazine guide.

OptionWhen to use itWhat readers can see
Public — appears in home, sections, search (default)Standard articles. Anything that should appear on home/section/tag pages and search.Existing Access Level rules apply.
Magazine — registered readers only (hidden from public listings)An article that's part of an issue and you want any signed-in reader to enjoy — even if they don't pay. Use this for sample pieces, featured excerpts, public-interest reporting bundled into an issue.Hidden from home/section/tag/search. Inside the issue, any registered user can read the full article. Anonymous visitors are sent to the sign-in page first.
Magazine — subscribers only (hidden from public listings)An article that's part of a paid magazine issue. Only paying subscribers should access it.Hidden from home/section/tag/search. Subscribers with a digital-issue subscription can read the full article inside the issue. Anonymous and free-account visitors are redirected to the parent issue page (which they can subscribe from).
How the form behaves when you change the visibility
  • Pick "Magazine — subscribers only" → Access Level is hidden. The article becomes subscriber-gated automatically.
  • Pick "Magazine — registered readers only" → Access Level is hidden. The article becomes free for any registered reader.
  • Pick "Public — appears in home, sections, search" (or leave the default) → Access Level reappears, and you can choose Free / Restricted Free / Premium Limited / Subscriber Only as usual.

Article ↔ issue is 1-to-1. An article belongs to at most one magazine issue. To bind an article to a specific issue, add it from Magazine > Issues > [your issue] > Table of Contents (see the Magazine Issue Management guide). The Article visibility dropdown controls access; the Table of Contents controls placement.

Common mistakes
MistakeWhat you'll seeFix
Set Magazine Access tier without adding the article to an issue's Table of ContentsThe article disappears from public pages and is also unreachable through any issue.Open the relevant issue in Magazine > Issues and add the article via the Table of Contents tab.
Edit a magazine article and change the tier back to Not magazine-onlyAccess Level resets to your earlier choice (or Free if there was none). The article begins appearing on home/section pages within ~60 seconds.This is intentional — confirm the new Access Level is what you want before saving.
Two editors save the same article around the same time, one with a magazine tier and one withoutWhichever save lands second wins.Coordinate with co-editors, or check the article's audit history under the Workflow card to confirm the latest state.

To edit an existing article:

  1. Go to Content to see the articles list.
  2. Find your article using:
    • Search — Type a title keyword
    • Filters — Filter by status, content type, section, access level, author, or date range
  3. Click on the article title or the Edit action to open it.
  4. Make your changes and click Save.

To preview an article before publishing:

  • While editing, click the Preview button to see how the article will look on the Reader Portal.

To view version history:

  • While editing an article, look for the Version History section.
  • You can see all saved versions with timestamps and change notes.
  • Click on any version to view it, or click Rollback to restore that version.
Create article form
The article editor with the rich text editor, metadata fields, and publishing options.

5.5 Submit an Article for Review (Editorial Workflow)

The Editorial Workflow is a structured process for reviewing and approving content before publication. It ensures quality and editorial standards are met.

Understanding the Workflow Stages

The editorial workflow has these stages, in order:

Invited (optional) → Awaiting Triage → Assigned to Sub-Editor → Sub-Editor Review
    → Awaiting Author Review → Author Revision (if needed)
    → Awaiting Final Review → Ready for Publishing
    → Publishing in Progress → Scheduled or Published

Here's what each stage means:

StageCodeWhat's HappeningWho Acts
InvitedS0An author has been invited to submit but hasn't yetAuthor
Awaiting TriageS1A new submission is waiting for the chief editor to review and assign itChief Editor
Assigned to Sub-EditorS2The submission has been assigned to a sub-editor but review hasn't startedSub-Editor
Sub-Editor ReviewS3The sub-editor is actively reviewing and editing the submissionSub-Editor
Awaiting Author ReviewS4The sub-editor has sent feedback — waiting for the author to respondAuthor
Author RevisionS5The author is making requested changesAuthor
Awaiting Final ReviewS6The submission is with the chief editor for final approvalChief Editor
Ready for PublishingS7Approved and waiting in the publishing queuePublishing Team
Publishing in ProgressS8The publishing team is typesetting and preparing for publicationPublishing Team
ScheduledS9Set to publish automatically at a scheduled date/timeSystem (automatic)
PublishedS10Live on the Reader Portal
Rejected/WithdrawnSXThe submission was rejected or withdrawn
CancelledSXThe submission was cancelled
RetractedSXA published article was pulled from circulationChief Editor

To access the Editorial Workflow:

  1. In the Admin Console sidebar, click Editorial.
  2. You'll be automatically directed to the right queue based on your role:
    • Chief Editor → Triage Queue (incoming submissions)
    • Publishing Team → Publishing Queue (approved content)
    • Sub-Editor → My Work (your assigned reviews)
    • Author → Submissions (your submitted articles)

To create a new submission:

  1. Go to Editorial → Submissions.
  2. Click New Submission.
  3. Fill in the submission details (title, content, content type, language, etc.).
  4. Click Submit. The submission enters "Awaiting Triage" status.

To invite an author to submit:

  1. Go to Editorial → Submissions.
  2. Click Invite Author.
  3. Enter the author's details and a message.
  4. The author receives an invitation and can submit directly.

To filter and find submissions:

  • Use the status tabs at the top:
    • All | Triage | In Review | With Author | Final Review | Publishing | Completed
  • Use Search to find by title or author name
  • Use Content Type filter (Article, Poem, Essay, Interview, Short Story, Translation)
  • Use Language filter (English, Hindi, Tamil, Telugu, Kannada, Malayalam, Bengali, Marathi, Gujarati, Other)
Editorial submissions list
The submissions page shows all articles in the editorial pipeline with status tabs for each workflow stage.

5.6 Review, Approve, or Reject an Article

For Chief Editors — Triaging new submissions:

  1. Go to Editorial → Queue (or click the "Triage" tab in Submissions).
  2. Click on a submission in "Awaiting Triage" status.
  3. Review the content.
  4. Choose an action:
    • Assign to Sub-Editor — Select a sub-editor from the dropdown and click confirm. The submission moves to "Assigned to Sub-Editor".
    • Reject — Provide a reason and click reject. The submission moves to "Rejected/Withdrawn".

For Sub-Editors — Reviewing submissions:

  1. Go to Editorial → My Work to see your assigned submissions.
  2. Click on a submission to open it.
  3. Review the content using the editor view.
  4. Choose an action:
    • Send to Author for Review — Write your feedback/comments and send. The submission moves to "Awaiting Author Review". The author is notified.
    • Submit to Chief Editor — If the content is ready, forward it for final review. The submission moves to "Awaiting Final Review".
    • Request Changes — Ask for specific revisions with detailed notes.

For Authors — Responding to revision requests:

  1. Go to Editorial → Submissions to see your articles.
  2. Look for articles in "Awaiting Author Review" or "Author Revision" status.
  3. Click to open, read the editorial feedback.
  4. Make the requested changes in the editor.
  5. Click Resubmit to send the revised version back. The submission moves back to "Sub-Editor Review".

For Chief Editors — Final review:

  1. Go to Editorial → Queue and click the "Final Review" tab.
  2. Open a submission in "Awaiting Final Review" status.
  3. Review the content and all editorial feedback.
  4. Choose an action:
    • Approve for Publishing — The submission moves to "Ready for Publishing".
    • Request Changes — Send back to the sub-editor for more revisions.
    • Reject — Provide a reason. The submission moves to "Rejected/Withdrawn".

Note: Every workflow transition triggers a notification to the relevant person. Authors receive notifications when their work needs attention, editors receive notifications when content is ready for review.

Editorial triage queue
The triage queue shows new submissions and items ready for final review.

5.7 Publish or Schedule an Article

Publishing from the Editorial Workflow:

  1. Go to Editorial → Publishing (or the "Publishing" tab in Submissions).
  2. You'll see three sub-tabs:
    • Ready — Approved articles waiting to enter typesetting
    • In Progress — Articles being typeset and prepared for publication
    • Scheduled — Articles set to publish at a future date
  3. Click on an article in the "Ready" queue.
  4. Click Start Typesetting. The article moves to the In Progress tab. This step is required — Publish Now and Schedule are not available until typesetting has been started.
  5. In In Progress, make any final edits (typesetting, formatting, featured image, etc.), then choose an action:
    • Publish Now — The article goes live immediately on the Reader Portal.
    • Schedule — Set a future date and time. The article will publish automatically when that time arrives.

Why the extra step? The workflow enforces typesetting as a mandatory gate: an item must be in Publishing in Progress before it can be published or scheduled. There is no separate Designer/typeset-review handoff.

Publishing directly from the Content page:

If you have the right permissions, you can also publish directly:

  1. Go to Content and open the article.
  2. Change the Status dropdown to Published.
  3. Click Save. The article goes live.

Or to schedule:

  1. Open the Scheduling section in the article form.
  2. Set the Scheduled Publish Date to a future date/time.
  3. Save the article. It will publish automatically at the scheduled time.

What happens when you publish:

  1. The article's status changes to "Published" in the Admin Console.
  2. The article syncs to Strapi CMS (the content backend).
  3. The Reader Portal picks up the new content within approximately 60 seconds.
  4. The article appears on:
    • Its own article page (e.g., /article/the-summer-garden)
    • The relevant section page (e.g., /section/fiction)
    • Search results
    • The homepage (if the section or tags match a homepage section's filters)
    • Any collection or issue it's part of
Publishing queue
The publishing queue shows articles ready for publication, in progress, and scheduled for future dates.

5.8 Archive or Retract an Article

To archive an article:

Archiving removes an article from active display but keeps it in the system.

  1. Go to Content and find the article.
  2. Click the More menu (three dots) on the article row.
  3. Select Archive.
  4. Confirm the action.

Or, open the article and change the Status to Archived, then save.

What happens: The article is removed from the Reader Portal. It remains in the Admin Console with "Archived" status and can be restored later.

To retract a published article (Editorial Workflow):

Retraction is for published articles that need to be pulled from circulation for editorial or legal reasons.

  1. Open the published submission in the Editorial Workflow.
  2. Click Retract.
  3. Provide a reason for retraction (required).
  4. Confirm. The article is unpublished from Strapi and marked as "Retracted" in the workflow.

Important: Retraction is a serious action. It unpublishes the article from the Reader Portal and logs the action with the actor, timestamp, and reason for audit purposes.

To unpublish an article (revert to draft):

Unpublishing pulls a live article off the Reader Portal and returns it to Draft without archiving it — useful when an article needs more work but you don't want it visible.

  1. Go to Content and find a Published (or Archived) article.
  2. Click the Unpublish action on the article row (or open the article and change Status to Draft). Confirm — the article is reverted to draft and removed from the Reader Portal within ~60 seconds.

To restore an archived article:

  1. Go to Content and filter by "Archived" status.
  2. Find the article and use the More menu or Bulk Actions to select Restore.
  3. The article returns to "Draft" status for re-editing and re-publishing.

Bulk actions on the Content list

Select multiple articles with the row checkboxes (or the "select all" header checkbox) to reveal the bulk action bar. The available actions depend on your permissions and on the statuses of the selected items:

Bulk actionWhat it doesRequires permissionNotes
PublishPublishes all selected articles that aren't already publishedPublishSkips items already published
UnpublishReverts all selected Published or Archived articles to Draft and removes them from the Reader PortalUpdateOnly published/archived items are affected; drafts are skipped. You'll be asked to confirm
ArchiveArchives all selected non-archived articlesArchive
RestoreReturns selected archived articles to DraftArchiveShown when archived items are selected
DeletePermanently deletes selected articlesDeletePublished, modified, or pending-review articles can't be deleted — archive them first

Bulk Unpublish mirrors the single-article Unpublish: each affected article is reverted to draft and pulled from the Reader Portal. If some selected items can't be unpublished (e.g., they're already drafts), you'll see a "partially unpublished" message reporting how many succeeded.


5.9 Work with Magazine Issues

Magazine issues let you group articles into a structured publication with a cover, editor's note, and table of contents.

To create a new issue:

  1. In the Admin Console sidebar, click Content Entities → Issues.

  2. Click Create Issue.

  3. Fill in the issue details:

    FieldRequired?What to Enter
    TitleYesThe issue title (e.g., "Spring 2026 Issue")
    Issue NumberYesA unique number (e.g., 12)
    DescriptionRecommendedBrief description of the issue's theme or contents
    Cover ImageRecommendedUpload or select a cover image from the Media Library
    Hero ImageOptionalA large hero banner image for the issue page
    Editor's NoteOptionalA message from the editor introducing the issue
    VolumeOptionalVolume number
    ThemeOptionalThe issue's theme (e.g., "Migration", "Memory")
    Cover Date LabelOptionalDisplay label for the cover date (e.g., "Spring 2026")
    FrequencyOptionalWeekly, Monthly, Quarterly, Half-Yearly, Yearly, or Special
    Access LevelYesFree or Subscriber Only
    Reader ModeOptionalArticle List (default), Flipbook, or Dual Spread
  4. Click Save. The issue is created in "Draft" status.

Issue workflow stages:

Issues follow their own workflow:

Draft → Building → Under Review → Approved → Scheduled or Published → Archived
StageWhat's Happening
DraftInitial creation — details being entered
BuildingAdding and organizing articles within the issue
Under ReviewSubmitted for editorial review
ApprovedReady to be published or scheduled
ScheduledSet to publish automatically at a future date
PublishedLive on the Reader Portal
ArchivedRemoved from active display

To add articles to an issue:

  1. Open the issue and go to the Articles or Episodes tab.
  2. Click Add Article.
  3. Search for and select articles to include.
  4. Reorder articles by dragging them into the desired order — this controls the table of contents.
  5. Click Save.

Removing an article from an issue may unpublish it. An article belongs to at most one magazine issue. If you remove a published article from an issue and it has no remaining issue links, the platform automatically reverts that article to Draft and unpublishes it from the Reader Portal (and from Strapi). This prevents a magazine-only article from being orphaned — live but unreachable through any issue. If you want the article to stay public on its own, change its Article visibility back to Public in the article form before removing it from the issue. Articles that still belong to another issue link, or that were already drafts, are left as-is.

To publish an issue:

  1. Move the issue through the workflow stages: Draft → Building → Under Review → Approved.
  2. From the "Approved" stage, choose:
    • Publish Now — The issue goes live immediately.
    • Schedule — Set a future date/time for automatic publication.
  3. When published:
    • The issue syncs to Strapi CMS.
    • It appears on the Reader Portal at /issue/[slug].
    • Subscribers receive email notifications about the new issue.

Tip: Before publishing, use the Publish Validation check to make sure the issue has enough articles, proper access levels, and required images.


5.10 Work with Collections

Collections are curated groups of articles around a theme — like "Best of 2025" or "Summer Reading".

To create a collection:

  1. Go to Content Entities → Collections.

  2. Click Create Collection.

  3. Fill in:

    FieldRequired?What to Enter
    TitleYesThe collection name (e.g., "Best Fiction of 2025")
    DescriptionRecommendedWhat this collection is about
    Cover ImageRecommendedA cover image for the collection card
    ThemeOptionalA thematic label
    Access LevelYesFree or Subscriber
    StatusYesDraft, Published, Featured, or Archived
    FeaturedOptionalToggle on to feature this collection prominently
    ArticlesYesSelect and order the articles in this collection
    TagsOptionalTags for discoverability
  4. Click Save.

To publish a collection:

  • Change the Status to Published (or Featured if you want it highlighted).
  • Click Save. The collection appears on the Reader Portal.

5.11 Work with Newsletters

Newsletter editions are email-style content that can be archived and displayed on the Reader Portal.

To create a newsletter edition:

  1. Go to Content Entities → Newsletters.

  2. Click Create Edition.

  3. Fill in:

    FieldRequired?What to Enter
    TitleYesThe newsletter title (e.g., "Weekly Digest — March 16")
    Edition NumberYesA unique edition number
    Preview TextRecommendedShort preview shown in newsletter listings
    ContentYesThe full newsletter HTML content
    TopicOptionalA topic or theme label
    Publish DateRecommendedThe date this edition is published
    External Archive URLOptionalLink to the newsletter in Mailchimp/SendGrid if applicable
    StatusYesDraft, Published, Featured, or Archived
  4. Click Save.

To publish a newsletter edition:

  • Change the Status to Published and click Save.
  • The newsletter appears on the Reader Portal at /newsletters/[slug].
  • It also appears in the Newsletter Archive page at /newsletters.

5.12 Work with Events

Events cover literary events, workshops, webinars, and meetups.

To create an event:

  1. Go to Content Entities → Events.

  2. Click Create Event.

  3. Fill in:

    FieldRequired?What to Enter
    TitleYesEvent name
    DescriptionYesShort description
    ContentOptionalDetailed event information
    Event TypeYesConference, Workshop, Webinar, Meetup, or Other
    Start Date/TimeYesWhen the event begins
    End Date/TimeYesWhen the event ends
    TimezoneYesEvent timezone
    Venue NameFor in-personName of the venue
    Address / CityFor in-personLocation details
    Is OnlineToggleWhether the event is virtual
    Online URLFor online eventsMeeting/webinar link
    Cover ImageRecommendedEvent poster or banner image
    SpeakersOptionalAdd speaker names, bios, photos, and roles
    ScheduleOptionalAdd time slots with titles and descriptions
    RSVP EnabledOptionalToggle to enable registration
    RSVP CapacityOptionalMaximum number of attendees
    Registration URLOptionalExternal registration link
    StatusYesDraft, Published, Featured, or Archived
  4. Click Save.


5.13 Work with Podcasts

Manage podcast shows and their individual episodes.

To create a podcast show:

  1. Go to Content Entities → Podcasts.

  2. Click Create Show.

  3. Fill in the show details:

    FieldRequired?What to Enter
    TitleYesPodcast show name
    DescriptionYesWhat the podcast is about
    Cover ArtRecommendedPodcast cover image
    Host NameYesName of the host
    Host BioOptionalBrief bio of the host
    RSS Feed URLOptionalLink to the podcast RSS feed
    Apple Podcasts URLOptionalApple Podcasts link
    Spotify URLOptionalSpotify link
    StatusYesDraft, Published, Featured, or Archived
  4. Click Save.

To add episodes:

  1. Open a podcast show and go to the Episodes tab.
  2. Click Add Episode.
  3. Fill in episode details (title, description, audio URL, show notes, season/episode number, duration, guests, transcript).
  4. Set the Status and Publish Date.
  5. Click Save.

5.14 Feature Content on the Homepage or Section Pages

To control which content appears prominently on the homepage or section pages, you use the Page Template System. Here's a quick overview of how it connects to editorial content:

How content appears on pages:

Each page on the Reader Portal (homepage, section pages, etc.) is built from sections — blocks like hero banners, article grids, and featured article cards. Each section is configured with:

  • Data Source — What type of content to show (articles, events, podcasts, etc.)
  • Selection Mode — How content is chosen:
    • Dynamic — Automatically pulls the latest or most popular content matching your filters
    • Manual — You hand-pick specific articles by ID (curated selection)
    • Mixed — Pin specific articles in certain positions, fill the rest dynamically
    • Contextual — Shows related content based on the current page (e.g., same section, same author)
  • Filters — Narrow by section, tags, content type, etc.
  • Sort — Latest, popular, trending, etc.

To feature specific content on the homepage:

  1. Go to Homepage in the Admin Console sidebar.
  2. Find the hero section or featured section you want to update.
  3. Change the Selection Mode to Manual.
  4. Search for and select the specific articles you want to feature.
  5. Set the order (first article = most prominent position).
  6. Click Publish to update the homepage.

Hero exclusivity:

When an article is featured in a hero section, it is automatically removed from other listing sections on the same page. This prevents the same article from appearing twice — once in the hero and again in the grid below.

For section pages (e.g., Fiction, Poetry):

Section pages automatically display articles from that section, sorted by the most recent. The first article typically appears as the featured article. To customize:

  1. Go to Layout → Pages and find the section page.
  2. Edit the template sections to control layout and content selection.
  3. See the Page Template System User Guide for detailed instructions.

Important: For content to appear on any reader-facing page, it must be Published in the Admin Console. Draft or pending review articles are never shown to readers.


5.15 Work with FAQ Items

FAQ items are frequently asked questions that appear on specific pages of the Reader Portal. Unlike a single FAQ page, the Hyphen platform supports page-level FAQs — each page can display its own relevant set of questions.

  1. In the Admin Console sidebar, click FAQ Items under the Content group.
  2. You'll see a list of all FAQ items with their question, category, page scopes, status, and last updated date.

Create a New FAQ Item

  1. Click Create FAQ Item in the top right.
  2. Fill in the FAQ Details (left column):
    • Title — Internal name for organizing (e.g., "Cancel subscription FAQ"). Auto-generates the slug.
    • Slug — URL-friendly identifier. Auto-generated from the title; you can customize it.
    • Question — The question as it will appear to readers (e.g., "How do I cancel my subscription?").
    • Answer — The answer text. Keep it clear and concise.
  3. Configure Settings (right column):
    • Category — Choose a topic category (General, Subscription, Account, Content, Billing, Technical). Categories group FAQs within a page's FAQ section.
    • Page Scopes — Type the URL paths where this FAQ should appear (e.g., subscribe, about, homepage). Press Enter or comma to add each scope. Leave empty to show the FAQ on all pages (global).
      • As you type, existing scopes from the database are suggested for consistency.
      • You can assign a FAQ to multiple pages (e.g., both subscribe and about).
    • Sort Order — Lower numbers appear first within a page's FAQ section.
    • Active — Toggle to show or hide this FAQ on the Reader Portal.
  4. Click Create FAQ Item.

Edit an Existing FAQ Item

  1. From the FAQ items list, click on any FAQ item to open it.
  2. Click Edit in the top right.
  3. Make your changes (question, answer, category, page scopes, sort order, active status).
  4. Click Save Changes.

Filter and Find FAQ Items

  • Search — Use the search bar to find FAQs by question, answer, title, or slug.
  • Category filter — Click category tabs (All, General, Subscription, Account, etc.) to filter by topic.
  • Page scope filter — Use the "All Pages" dropdown to filter by which page a FAQ appears on.

Understanding Page Scopes

Page scopes control which Reader Portal pages show each FAQ:

Scope ValueWhere It Appears
subscribeThe subscription/pricing page
aboutThe about page
homepageThe homepage
faqThe dedicated FAQ page
termsThe terms and conditions page
(empty)All pages — the FAQ is global

Scopes are free-form text — you can use any URL path slug. The system auto-suggests values already in use to keep things consistent.

How FAQs Appear on the Reader Portal

  • Each page that has an FAQ section in its template will show only the FAQs scoped to that page, plus any global FAQs (those with no page scopes).
  • FAQs are grouped by category within the section, with an accordion-style expand/collapse interface.
  • The FAQ section can be toggled on or off for any page via the Page Template Editor (Layout > Pages > select page > toggle the FAQ section's "Active" checkbox).
  • Each page's FAQ section also generates structured data (FAQPage schema) for search engine optimization.

Delete a FAQ Item

  1. From the FAQ items list, click the three-dot menu on any row.
  2. Click Delete.
  3. Confirm the deletion. This is permanent.

5.16 Reading Time and Publication Date on Article Pages

Article pages on the Reader Portal can show a small metadata line — the publication date and an estimated reading time — beneath the byline.

  • Reading time is calculated automatically from the article's word count (≈200 words per minute) when you save the article; you don't enter it manually.
  • Publication date is the date the article went live.

Whether these appear is controlled by two layers working together:

  1. Platform settings — A global on/off for showing the article date and the reading time, plus a maximum reading-time minutes value. If an article's estimated reading time is above that cap, the reading-time chip is hidden (it avoids displaying intimidatingly long numbers). These live in Settings → Appearance.
  2. Template field visibility — Each Article Header section in the Page Template editor has Date and Reading time visibility toggles. Both the platform setting and the template toggle must be on for the chip to show.

Book sections behave differently. For sections marked as a Book section, the article header intentionally hides the author/translator byline and the date — a book piece is presented by the book, not by a personal byline — regardless of the template's field-visibility toggles. (A section is marked as a book section via its Section settings.)

5.17 Reader-facing Article Filters (Category and Language)

The Reader Portal can show an article filter bar so readers can narrow a listing by category (section) and/or language. This is configured on the Article Filter section in the Page Template editor (Layout → Pages → select page → the Article Filter section's Properties panel).

  • By default the filter bar offers a single dimension. Turn on Apply both Filters to let readers filter by category AND language together.
  • When Apply both Filters is on, two option pickers appear: Category options and Language options. Use them to curate exactly which categories and languages are offered in the dropdowns. Leave a picker empty to offer all categories (or all languages) — the default.
  • The categories come from your active Sections, and the languages from the active Language registry, so the lists stay consistent with the rest of the platform.

Editor tip. You can also constrain an article grid/listing section's underlying pool by Section, Tag, and Language using the curated multi-select dropdowns in that section's Properties panel — and a contextual "Related By" section can layer a Tag or Language constraint on top of its relationship. These shape what the section pulls; the Article Filter bar above shapes what readers can choose to filter by.


6. How to Verify It Worked

After creating, editing, or publishing content, here's how to confirm everything is working correctly.

Verify an Article is Published

What to CheckHow to CheckExpected Result
Article pageVisit your Reader Portal at /article/[slug]The full article is displayed with title, author, featured image, content, and social sharing buttons
Section pageVisit /section/[section-slug] (e.g., /section/fiction)The article appears in the section's article grid, sorted by publish date
HomepageVisit the Reader Portal homepageThe article appears in relevant homepage sections if it matches the section/tag filters
SearchUse the Reader Portal search bar to search for the article titleThe article appears in search results
Author pageVisit /author/[author-slug]The article appears in the author's works list
Admin Console statusGo to Content in the Admin ConsoleThe article shows "Published" status badge

Verify an Author is Set Up

What to CheckHow to CheckExpected Result
Author pageVisit /author/[slug] on the Reader PortalThe author's bio, photo, and published works are displayed
Authors listingVisit /authors on the Reader PortalThe author appears in the full authors listing
Article attributionOpen any article by this author on the Reader PortalThe author's name and bio appear correctly

Verify a Magazine Issue is Published

What to CheckHow to CheckExpected Result
Issue pageVisit /issue/[slug] on the Reader PortalThe issue displays with cover, editor's note, and article table of contents
Archive pageVisit /archive on the Reader PortalThe issue appears in the archive timeline
Subscriber notificationCheck the notification logs in Admin ConsoleSubscribers received email notifications about the new issue

Verify a Collection is Published

What to CheckHow to CheckExpected Result
Collection pageNavigate to the collection via the Reader PortalAll selected articles appear in the correct order
Admin listingCheck Content Entities → CollectionsShows "Published" or "Featured" status

Verify Scheduled Publishing

What to CheckHow to CheckExpected Result
Before schedule timeVisit the article URL on Reader PortalThe article should NOT be visible
After schedule timeWait for the scheduled time, then refresh the article URLThe article should now be live
Admin statusCheck the article/issue in Admin Console after the scheduled timeStatus should change from "Scheduled" to "Published"

7. Worked Examples

7.1 Example 1: Creating and Publishing a New Article from Draft to Live

Scenario: You're a content manager who needs to publish a new short story called "The River's Memory" by author Priya Sharma in the Fiction section.

Step-by-step:

  1. Check the author exists:

    • Go to Authors in the sidebar.
    • Search for "Priya Sharma".
    • If she doesn't exist, click New Author and create her profile (name, email, short bio, photo, set specialization to Fiction, toggle Active).
  2. Upload the featured image:

    • Go to Media Library.
    • Click Upload Files.
    • Upload the story's cover image.
    • Add alt text: "A misty river at dawn".
    • Save to the "Fiction Covers" folder.
  3. Create the article:

    • Go to Content and click New Article.
    • Title: "The River's Memory"
    • Content Type: Fiction
    • Content: Paste or type the full story in the rich text editor. Format with headings, italics for thoughts, block quotes for dialogue.
    • Excerpt: "In the village where rivers remembered everything, Meera discovered that some memories are better left undisturbed."
    • Featured Image: Click the picker and select the image you uploaded.
    • Author: Search and select "Priya Sharma".
    • Section: Select "Fiction".
    • Tags: Select "short story", "debut" (or create new tags).
    • Access Level: Free.
    • Status: Draft.
    • Click Save.
  4. Preview the article:

    • Click Preview to see how it will look on the Reader Portal.
    • Check the formatting, image placement, and excerpt.
  5. Publish the article:

    • Change the Status dropdown from "Draft" to "Published".
    • Click Save.
  6. Verify on the Reader Portal:

    • Visit /article/the-rivers-memory — the full article should be live.
    • Visit /section/fiction — the article should appear in the fiction grid.
    • Visit /author/priya-sharma — the article should appear in her works list.
    • Search for "River's Memory" — the article should appear in results.

7.2 Example 2: Sending an Article Back for Revision and Then Approving It

Scenario: You're a chief editor. A new poem called "Fragments" has been submitted and needs revision before it can be published.

Step-by-step:

  1. Triage the submission:

    • Go to Editorial (you'll land on the Triage Queue as a chief editor).
    • Find "Fragments" in the "Awaiting Triage" list.
    • Click on it to review.
    • Click Assign to Sub-Editor and select "Ravi Kumar" from the dropdown.
    • The submission moves to "Assigned to Sub-Editor". Ravi receives a notification.
  2. Sub-editor reviews (Ravi's perspective):

    • Ravi goes to Editorial → My Work and finds "Fragments".
    • He reads the poem and finds the third stanza needs work.
    • He clicks Send to Author for Review and writes:

      "The third stanza breaks the rhythm established in the first two. Consider revising the line breaks and the closing image. The rest is strong."

    • The submission moves to "Awaiting Author Review". The author is notified.
  3. Author revises (Author's perspective):

    • The author goes to Editorial → Submissions and sees "Fragments" in "Awaiting Author Review".
    • She reads Ravi's feedback, revises the third stanza in the editor.
    • She clicks Resubmit.
    • The submission moves back to "Sub-Editor Review". Ravi is notified.
  4. Sub-editor approves:

    • Ravi reviews the revision. The third stanza is now much better.
    • He clicks Submit to Chief Editor for final review.
    • The submission moves to "Awaiting Final Review". The chief editor is notified.
  5. Chief editor gives final approval:

    • You open "Fragments" from the "Final Review" tab.
    • You read the revised version and are satisfied.
    • Click Approve for Publishing.
    • The submission moves to "Ready for Publishing".
  6. Publishing team publishes:

    • The publishing team sees "Fragments" in Editorial → Publishing → Ready.
    • They open it, make final formatting adjustments.
    • Click Publish Now.
    • The poem is live on the Reader Portal.

7.3 Example 3: Creating a New Author and Mapping Content

Scenario: A new writer, Amit Desai, is joining your publication. You need to set up his profile and assign his first two articles.

Step-by-step:

  1. Create the author profile:

    • Go to Authors and click New Author.
    • Name: Amit Desai
    • Email: amit.desai@email.com
    • Photo: Upload his headshot from the Media Library.
    • Short Bio: "Amit Desai is a Mumbai-based writer whose work explores urban solitude and the spaces between languages."
    • Long Bio: Add a more detailed biography.
    • Location: Mumbai, India
    • Website: https://amitdesai.com
    • Social Links: Twitter: @amitdesai, Instagram: @amit.writes
    • Languages: English, Hindi, Marathi
    • Specializations: Check Fiction, Essay
    • Status: Active
    • Click Save.
  2. Create and assign his first article:

    • Go to Content and click New Article.
    • Title: "The Quiet Between Trains"
    • Content Type: Fiction
    • Content: Paste the story.
    • Author: Search and select "Amit Desai".
    • Section: Fiction
    • Tags: "short story", "urban"
    • Access Level: Free
    • Status: Published (or Draft if it needs review first)
    • Click Save.
  3. Create his second article:

    • Repeat the above for his essay "Notes on Forgetting".
    • Content Type: Essay
    • Section: Essays
    • Author: Amit Desai
    • Tags: "memoir", "language"
  4. Verify the author profile:

    • Go to Authors and click on "Amit Desai".
    • The Overview tab should show 2 articles.
    • The Works tab should list both articles.
    • On the Reader Portal, visit /author/amit-desai — his profile, bio, and both articles should appear.

7.4 Example 4: Featuring Content on a Curated Homepage Section

Scenario: You want the homepage hero section to showcase three specific articles for the week: a new fiction piece, a featured interview, and an award-winning poem.

Step-by-step:

  1. Identify the articles:

    • Go to Content and note the titles (or IDs) of the three articles you want to feature:
      • "The River's Memory" (Fiction)
      • "In Conversation with Arundhati Roy" (Interview)
      • "Monsoon Ghazal" (Poetry)
    • Make sure all three are Published.
  2. Edit the homepage hero section:

    • Go to Homepage in the Admin Console sidebar.
    • Find the Hero section (usually the first section — "Hero Full-Width" or "Hero Carousel").
    • Click Edit on the hero section.
    • Change the Selection Mode to Manual.
    • Remove any existing selections.
    • Search for and add:
      1. "The River's Memory" (this will be the primary hero item)
      2. "In Conversation with Arundhati Roy"
      3. "Monsoon Ghazal"
    • Arrange them in the desired order (first = most prominent).
  3. Publish the homepage:

    • Click Publish to save and push the changes.
  4. Verify on the Reader Portal:

    • Visit the Reader Portal homepage.
    • The hero section should display the three selected articles in order.
    • The rest of the homepage sections (article grids, etc.) should NOT duplicate these hero articles (hero exclusivity ensures this).
    • Click each hero article to confirm it links to the correct article page.

Tip: If you want the hero to go back to showing the latest content automatically, change the Selection Mode back to Dynamic with filters like "all sections, sort by latest".


7.5 Example 5: Publishing a Themed Collection

Scenario: You want to create a "Best of 2025" collection that curates the top 10 articles from the past year.

Step-by-step:

  1. Identify the articles:

    • Go to Content and filter by date range (January 2025 – December 2025).
    • Sort by views, shares, or manually select your editorial picks.
    • Note the 10 articles you want to include.
  2. Create the collection:

    • Go to Content Entities → Collections.
    • Click Create Collection.
    • Title: "Best of 2025"
    • Description: "Our editors' selection of the finest fiction, poetry, and essays published in 2025."
    • Cover Image: Upload or select a curated cover image.
    • Theme: "Year in Review"
    • Access Level: Free (to reach the widest audience)
    • Articles: Search and add the 10 articles in the desired reading order:
      1. "The River's Memory" by Priya Sharma
      2. "Monsoon Ghazal" by Kavita Rao
      3. ... (continue for all 10)
    • Tags: "best of", "2025", "editors pick"
    • Status: Published
    • Featured: Toggle ON to give it prominent placement
    • Click Save.
  3. Feature the collection on the homepage (optional):

    • Go to Homepage and find or add a "Collections" section.
    • Configure it to show Featured collections.
    • Publish the homepage.
  4. Verify on the Reader Portal:

    • Navigate to the collection page — all 10 articles should be listed in order.
    • Each article link should open the full article.
    • The collection should appear in any homepage section configured to show collections.
    • If featured, it should be highlighted prominently.

8. Common Mistakes and How to Fix Them

MistakeWhat HappensHow to Fix
Article not showing on Reader PortalYou published the article but it doesn't appear on the website1. Wait 60 seconds (the Reader Portal refreshes on a 60-second cycle). 2. Check that the article status is "Published" in the Admin Console. 3. Make sure the article has a Section assigned — articles without sections don't appear on section pages. 4. Check Strapi is running and connected.
Featured image not showingThe article card shows a placeholder instead of the imageMake sure the featured image is set in the article form. Check that the image URL is valid and accessible. Re-upload from the Media Library if needed.
Wrong author on articleThe article shows the wrong author nameOpen the article, use the Author Picker to change the author, and save. The Reader Portal updates within 60 seconds.
Article stuck in workflowA submission seems stuck and no one can act on itCheck the current status in the Submissions list. Make sure the right person has been notified. The chief editor can reassign or route the submission to a different stage.
Published article has a typoA mistake was found after publishingOpen the article in Content, fix the typo, and save. The change syncs to the Reader Portal within 60 seconds. No need to unpublish.
Scheduled article didn't publishThe scheduled time passed but the article isn't liveCheck the Admin Console — does the status still say "Scheduled"? The cron job may not have run yet. Check with your DevOps team that the scheduled publishing cron is active. You can also manually change the status to "Published".
Duplicate article in hero and gridThe same article appears in both the hero section and the article grid belowThis shouldn't happen if hero exclusivity is working. Check that the hero section has heroExclusive enabled in the template settings.
Collection shows 0 articlesThe collection page loads but no articles are listedMake sure the articles in the collection are all Published. Draft articles are not displayed on the Reader Portal.
Issue publishing fails validationYou tried to publish an issue but got validation errorsRun the Publish Validation check. Common issues: too few articles, missing cover image, articles not in Published status. Fix the flagged items and try again.
Version history shows unexpected changesThe article's version history shows changes you didn't makeCheck the "Updated By" field. Another editor may have made changes. Use the version history to compare and roll back if needed.
Tags not appearing on Reader PortalYou added tags to an article but they don't show on the article pageTags sync with Strapi. Verify the tags exist in both the Admin Console and Strapi. If they're newly created, the sync may take a few minutes.
Cannot publish — permission deniedYou get an error when trying to publish or change article statusYour role may not have publishing permissions. Contact your Admin to check your role's permissions under Settings → Roles & Permissions.
Newsletter not visible on Reader PortalPublished newsletter edition doesn't appearCheck the status is "Published". Visit /newsletters on the Reader Portal to check the archive listing. Ensure the newsletter template section is configured on the newsletters page.

Known Limitations

AreaLimitationWorkaround
Social LoginThe OAuth link API exists, but NextAuth provider configuration is not yet complete for Reader Portal social loginUsers register with email/phone and OTP
Email Service ProviderFull Mailchimp/SendGrid integration is partial — webhook handlers for open/click/bounce metrics exist, but the full integration is incompleteTransactional emails work via SMTP; marketing email analytics are limited
Content AnalyticsIndividual article performance tracking is partialUse Google Analytics 4 for detailed article analytics
Advanced SearchBasic full-text search works, but advanced NLP-based typo correction is pendingUsers may need exact or near-exact search terms
Translation WorkflowMultilingual translation fields (language, translationOfId) sync to Strapi, but there is no dedicated translation management UITranslations are managed as separate articles linked by translationOfId
Collection OrderingCollections store article order as a JSON fieldOrdering works, but there is no drag-and-drop reordering UI within the collection editor
Real-time CollaborationOnly one editor should edit an article at a timeThere is no real-time collaboration or locking mechanism — coordinate with your team to avoid conflicts
Bulk SchedulingYou can schedule individual articles, but there is no bulk scheduling featureSchedule articles one at a time, or use Issue scheduling to publish a group of articles together
Podcast Audio HostingThe platform stores audio file URLs but does not host audio files directlyUpload audio to a podcast hosting service (e.g., Anchor, Libsyn) and paste the URL
Reader Portal CacheChanges to published content take up to 60 seconds to appear on the Reader Portal due to ISR (Incremental Static Regeneration)Wait 60 seconds after publishing, then hard-refresh the Reader Portal page

Note: These limitations reflect the current state of implementation. Features listed as partial or pending may be completed in future updates. If you encounter issues not covered here, contact your platform admin or file a support request.


9. Frequently Asked Questions

On this page

1. Simple Feature OverviewWhat You Can DoHow Content Reaches ReadersHow It Works (Behind the Scenes)The three applications and one databaseWhat happens when you create or edit an articleWhat happens when you publishData-flow diagramContent entities (issues, collections, events, podcasts, newsletters)The Editorial Workflow ExplainedThe statesThe transitionsWho does whatEnd-of-life states2. Who Should Use This Feature3. Before You BeginPrerequisites Checklist4. Key Terms in Simple Language5. Step-by-Step Setup Guide5.1 Set Up AuthorsTo create a new author:To view an author's profile and published works:To edit or deactivate an author:5.2 Set Up Sections and TagsSectionsTags5.3 Upload Media to the Media LibraryTo upload files:To organize your media:To use media in an article:5.4 Create and Edit an ArticleTo create a new article:Magazine Access tierHow the form behaves when you change the visibilityCommon mistakesTo edit an existing article:To preview an article before publishing:To view version history:5.5 Submit an Article for Review (Editorial Workflow)Understanding the Workflow StagesTo access the Editorial Workflow:To create a new submission:To invite an author to submit:To filter and find submissions:5.6 Review, Approve, or Reject an ArticleFor Chief Editors — Triaging new submissions:For Sub-Editors — Reviewing submissions:For Authors — Responding to revision requests:For Chief Editors — Final review:5.7 Publish or Schedule an ArticlePublishing from the Editorial Workflow:Publishing directly from the Content page:What happens when you publish:5.8 Archive or Retract an ArticleTo archive an article:To retract a published article (Editorial Workflow):To unpublish an article (revert to draft):To restore an archived article:Bulk actions on the Content list5.9 Work with Magazine IssuesTo create a new issue:Issue workflow stages:To add articles to an issue:To publish an issue:5.10 Work with CollectionsTo create a collection:To publish a collection:5.11 Work with NewslettersTo create a newsletter edition:To publish a newsletter edition:5.12 Work with EventsTo create an event:5.13 Work with PodcastsTo create a podcast show:To add episodes:5.14 Feature Content on the Homepage or Section PagesHow content appears on pages:To feature specific content on the homepage:Hero exclusivity:For section pages (e.g., Fiction, Poetry):5.15 Work with FAQ ItemsNavigate to FAQ ItemsCreate a New FAQ ItemEdit an Existing FAQ ItemFilter and Find FAQ ItemsUnderstanding Page ScopesHow FAQs Appear on the Reader PortalDelete a FAQ Item5.16 Reading Time and Publication Date on Article Pages5.17 Reader-facing Article Filters (Category and Language)6. How to Verify It WorkedVerify an Article is PublishedVerify an Author is Set UpVerify a Magazine Issue is PublishedVerify a Collection is PublishedVerify Scheduled Publishing7. Worked Examples7.1 Example 1: Creating and Publishing a New Article from Draft to Live7.2 Example 2: Sending an Article Back for Revision and Then Approving It7.3 Example 3: Creating a New Author and Mapping Content7.4 Example 4: Featuring Content on a Curated Homepage Section7.5 Example 5: Publishing a Themed Collection8. Common Mistakes and How to Fix ThemKnown Limitations9. Frequently Asked Questions