Skip to main content

Saved View

Manage saved views — named, server-stored query bookmarks. A saved view captures the filters and sort you set in the web UI (across issues / runs / activity), persisted and addressable from the CLI.
Aliases: saved-views, view.
Defined in cmd/crewship/cmd_admin_extras.go.

Subcommands


crewship saved-view list

GET /api/v1/saved-views. JSON-shaped output by default.

crewship saved-view create

POST /api/v1/saved-views. Persists a query bookmark for the current user. --filters is the filter JSON the web UI stores; --sort is optional sort JSON. Both are validated as JSON client-side before the request is sent.

crewship saved-view update <view-id>

PATCH /api/v1/saved-views/{id}. Only the flags you set are sent. Accepts the same fields as create plus --default to mark the view as the default. --filters/--sort are JSON-validated client-side.
Owner-only — the server returns 403 for non-owners.

crewship saved-view delete <view-id>

DELETE /api/v1/saved-views/{id}. Prints [deleted view <id>] on success.

See also