This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new a548368  allow access to manifiest.json without authentication
a548368 is described below

commit a548368880d3a0554acb18fe3d0b635bdeb21abf
Author: Sam Ruby <[email protected]>
AuthorDate: Sun Jun 10 10:35:17 2018 -0400

    allow access to manifiest.json without authentication
---
 www/board/agenda/config.ru | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/www/board/agenda/config.ru b/www/board/agenda/config.ru
index ad80b7e..f5edae2 100644
--- a/www/board/agenda/config.ru
+++ b/www/board/agenda/config.ru
@@ -9,7 +9,8 @@ use ASF::Auth::MembersAndOfficers do |env|
     env['PATH_INFO'] =~ %r{^/(app|sw)\.js(\.map)?$} or
     env['PATH_INFO'] =~ %r{\.js\.rb?$} or
     env['PATH_INFO'] =~ %r{^/stylesheets/.*\.css\$} or
-    env['PATH_INFO'] =~ %r{^/[-\d]+/bootstrap.html$}
+    env['PATH_INFO'] =~ %r{^/[-\d]+/bootstrap.html$} or
+    env['PATH_INFO'] == '/manifest.json'
   then
     next true
   end

-- 
To stop receiving notification emails like this one, please contact
[email protected].

Reply via email to