Commit a69efb0e authored by Frank Bergmann's avatar Frank Bergmann

- Integrated upgrade scripts

parent caec0f85
......@@ -356,10 +356,14 @@ select acs_privilege__add_child('admin', 'add_topic_noncli');
select acs_privilege__create_privilege('add_topic_pm','Message to the project manager only','');
select acs_privilege__add_child('admin', 'add_topic_pm');
select acs_privilege__create_privilege('view_topics_all','View all topics','');
select acs_privilege__add_child('admin', 'view_topics_all');
-- User that should be added as topic assignees
select acs_privilege__create_privilege('add_topic_assignee','Add Topic Assignee','Add Topic Assignee');
select acs_privilege__add_child('admin', 'add_topic_assignee');
-- See All Topics
select im_priv_create('view_topics_all', 'Employees');
......@@ -561,6 +565,16 @@ SELECT im_component_plugin__new (
'im_forum_create_bar "<B>[_ intranet-forum.Forum_Items]<B>" 0 $return_url'
);
-- Remove the possibility to create new forum topics from the home page
-- Creating topics from the HomeComponent ist inconsistent currently
update im_component_plugins
set title_tcl = '_ intranet-forum.Forum_Items'
where plugin_name = 'Home Forum Component';
\i ../common/intranet-forum-common.sql
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment