This is an automated email from the ASF dual-hosted git repository.
sebb 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 e3529d34 Note when there is no access to show checks
e3529d34 is described below
commit e3529d3420a44c57e8d1fc93844143bf5a64b1fb
Author: Sebb <[email protected]>
AuthorDate: Thu Apr 20 12:44:19 2023 +0100
Note when there is no access to show checks
---
www/roster/views/pmc/members.js.rb | 3 +++
www/roster/views/ppmc/members.js.rb | 2 ++
2 files changed, 5 insertions(+)
diff --git a/www/roster/views/pmc/members.js.rb
b/www/roster/views/pmc/members.js.rb
index fcc6af4a..26cf9788 100644
--- a/www/roster/views/pmc/members.js.rb
+++ b/www/roster/views/pmc/members.js.rb
@@ -139,6 +139,9 @@ class PMCMembers < Vue
}
}
end
+
+ else
+ _h4 'Sorry, you do not have access to show private list subscription
checks'
end
end
diff --git a/www/roster/views/ppmc/members.js.rb
b/www/roster/views/ppmc/members.js.rb
index c974ca00..b37b6177 100644
--- a/www/roster/views/ppmc/members.js.rb
+++ b/www/roster/views/ppmc/members.js.rb
@@ -97,6 +97,8 @@ class PPMCMembers < Vue
}
}
end
+ else
+ _h4 'Sorry, you do not have access to show private list subscription
checks'
end
end