Skip to content

Commit b634ede

Browse files
authoredSep 21, 2017
Set auth also for swaggerUI paths
1 parent c379231 commit b634ede

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎lib/index.js

+4
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,9 @@ exports.register = function (plugin, options, next) {
163163
pluginWithDependencies.route([{
164164
method: 'GET',
165165
path: settings.swaggerUIPath + '{path*}',
166+
config: {
167+
auth: settings.auth
168+
},
166169
handler: {
167170
directory: {
168171
path: swaggerDirPath + Path.sep,
@@ -174,6 +177,7 @@ exports.register = function (plugin, options, next) {
174177
method: 'GET',
175178
path: settings.swaggerUIPath + 'extend.js',
176179
config: {
180+
auth: settings.auth,
177181
files: {
178182
relativeTo: publicDirPath
179183
}

0 commit comments

Comments
 (0)
Please sign in to comment.