Skip to content

// Activity Log & Undo

Every action recorded. Every mistake reversible.

Flux maintains a full event-sourced activity log with before and after state snapshots for every mutation. One-click undo reverses any action. Soft deletes mean nothing is permanently lost until you explicitly say so.

// Capabilities
06 features
01

Event-sourced activity log

Every action - card created, column moved, label changed, comment posted - is recorded with a before and after state snapshot. The log is the source of truth, not a best-effort summary.

02

One-click undo

Made a mistake? Click undo and the last action is reversed using the stored before-state snapshot. Works for card moves, edits, deletes, column changes, and more.

03

Conflict-aware undo

If someone else edited the same entity after your action, undo detects the conflict and warns you instead of silently overwriting their work.

04

Idempotent write operations

Every mutation includes an idempotency key. If a network glitch causes a retry, the server recognizes the duplicate and returns the original result - no double-creates, no phantom cards.

05

Soft deletes with recovery

Deleted cards, columns, and boards are soft-deleted with a timestamp. They can be restored from the activity log or the trash view - nothing is permanently lost until you say so.

06

Per-board activity feed

Each board has its own chronological activity feed showing who did what and when. Filter by action type or user to track specific changes.

// FAQ
04 questions
01

How far back does the activity log go?

+

The activity log retains every action for the lifetime of the board. There is no time-based expiration - every create, update, move, and delete is preserved with its full before and after state.

02

Can I undo any action?

+

Most write actions (card creates, updates, moves, deletes, column changes) support undo. The system checks whether the entity has been modified by another user since your action - if it has, you will see a conflict warning before proceeding.

03

What happens when I delete a card?

+

Deleting a card sets a soft-delete timestamp. The card disappears from the board view but is recoverable from the trash or via undo. Permanent deletion requires admin access.

04

Is the activity log visible to all team members?

+

Yes. Any member with at least viewer access to a board can see its activity log. The log shows the action, the user who performed it, and the timestamp.

// Work fearlessly

Move fast. Undo anything.

Every action is reversible. Start building with confidence.