Skip to content

Commit

Permalink
Merge pull request #50 from sslotnick-isp/hidden-resources
Browse files Browse the repository at this point in the history
feat: allow hidden/undocumented resources
  • Loading branch information
sslotnick-isp authored May 9, 2022
2 parents 73c101e + 09ba8cf commit 34009d6
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
12 changes: 12 additions & 0 deletions resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,15 @@ type Resource struct {
operations []*Operation

tags []string

hidden bool
}

func (r *Resource) toOpenAPI(components *oaComponents) *gabs.Container {
if r.hidden {
return nil
}

doc := gabs.New()

for _, sub := range r.subResources {
Expand Down Expand Up @@ -110,3 +116,9 @@ func (r *Resource) SubResource(path string) *Resource {
func (r *Resource) Tags(names ...string) {
r.tags = append(r.tags, names...)
}

// Hidden removes this resource from the OpenAPI spec and documentation. It
// is intended to be used for things like health check endpoints.
func (r *Resource) Hidden() {
r.hidden = true
}
24 changes: 24 additions & 0 deletions resource_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package huma

import (
"testing"

"github.com/stretchr/testify/assert"
)

func TestResource(t *testing.T) {
r := Resource{
path: "/test",
}

assert.NotNil(t, r.toOpenAPI(&oaComponents{}))
}

func TestHiddenResource(t *testing.T) {
r := Resource{
path: "/test",
}
r.Hidden()

assert.Nil(t, r.toOpenAPI(&oaComponents{}))
}

0 comments on commit 34009d6

Please sign in to comment.