Michael Hoennig
f0eb76ee61
Co-authored-by: Michael Hoennig <michael@hoennig.de> Reviewed-on: #42 Reviewed-by: Marc Sandlus <marc.sandlus@hostsharing.net>
29 lines
612 B
YAML
29 lines
612 B
YAML
openapi: 3.0.1
|
|
info:
|
|
title: Hostsharing hsadmin-ng API
|
|
version: v0
|
|
servers:
|
|
- url: http://localhost:8080
|
|
description: Local development default URL.
|
|
|
|
paths:
|
|
|
|
/api/rbac/users:
|
|
$ref: 'rbac-users.yaml'
|
|
|
|
/api/rbac/users/{userUuid}/permissions:
|
|
$ref: 'rbac-users-with-id-permissions.yaml'
|
|
|
|
/api/rbac/users/{userUuid}:
|
|
$ref: 'rbac-users-with-uuid.yaml'
|
|
|
|
/api/rbac/roles:
|
|
$ref: 'rbac-roles.yaml'
|
|
|
|
/api/rbac/grants:
|
|
$ref: 'rbac-grants.yaml'
|
|
|
|
/api/rbac/grants/{grantedRoleUuid}/{granteeUserUuid}:
|
|
$ref: 'rbac-grants-with-id.yaml'
|
|
|