Skip to content

Commit 22f646d

Browse files
committedSep 22, 2017
Fix auth for swaggerUI files
1 parent b634ede commit 22f646d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎lib/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ exports.register = function (plugin, options, next) {
164164
method: 'GET',
165165
path: settings.swaggerUIPath + '{path*}',
166166
config: {
167-
auth: settings.auth
167+
auth: false
168168
},
169169
handler: {
170170
directory: {
@@ -177,7 +177,7 @@ exports.register = function (plugin, options, next) {
177177
method: 'GET',
178178
path: settings.swaggerUIPath + 'extend.js',
179179
config: {
180-
auth: settings.auth,
180+
auth: false,
181181
files: {
182182
relativeTo: publicDirPath
183183
}

0 commit comments

Comments
 (0)
Please sign in to comment.