liquid_feedback_frontend
diff app/main/issue/show_tab.lua @ 527:4cee33ad5e16
Completed support for config.public_access = "full"
author | bsw |
---|---|
date | Fri May 18 19:44:41 2012 +0200 (2012-05-18) |
parents | 63d6549cc00b |
children |
line diff
1.1 --- a/app/main/issue/show_tab.lua Fri May 18 19:21:45 2012 +0200 1.2 +++ b/app/main/issue/show_tab.lua Fri May 18 19:44:41 2012 +0200 1.3 @@ -18,7 +18,7 @@ 1.4 static_params = { issue_id = issue.id }, 1.5 } 1.6 1.7 -if app.session.member_id then 1.8 +if app.session.member_id or config.public_access == "full" then 1.9 tabs[#tabs+1] = 1.10 { 1.11 name = "interested_members", 1.12 @@ -50,7 +50,7 @@ 1.13 params = { issue = issue } 1.14 } 1.15 1.16 -if config.etherpad then 1.17 +if config.etherpad and app.session.member_id then 1.18 tabs[#tabs+1] = 1.19 { 1.20 name = "pad",