Skip to content

Get Tags

Stable

Getting tags returns all tag strings currently in use across published mods in the registry. The list is used to populate the tag filter in the mod browser.

PropertyValue
Applies toWebapp
TriggerClient requests GET /api/tags
PreconditionsNone

Inputs

There are no inputs.

Assertions

AssertionStatus
None — the operation always succeeds

Outputs

string[] : A list of all distinct tag strings across published mods. May be empty if no mods have tags.

Effects

None. This is a read-only operation.

Behavior

mermaid
flowchart TD
    Start([GET /api/tags]) --> Query[modRepository.findAllTags]
    Query --> Done([string array])

    style Done fill:#4ade80,color:#000

See Also