├── .github └── workflows │ ├── 4_2_11.yml │ ├── 5_1_3.yml │ └── master.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── app └── views │ └── sidebar │ └── _hideButton_partial.html.erb ├── assets ├── images │ └── buttons.png ├── javascripts │ └── redmine_hide_sidebar.js └── stylesheets │ └── redmine_hide_sidebar.css ├── config ├── locales │ └── en.yml └── routes.rb ├── init.rb └── lib └── sidebar_hook_listener.rb /.github/workflows/4_2_11.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/.github/workflows/4_2_11.yml -------------------------------------------------------------------------------- /.github/workflows/5_1_3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/.github/workflows/5_1_3.yml -------------------------------------------------------------------------------- /.github/workflows/master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/.github/workflows/master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/README.md -------------------------------------------------------------------------------- /app/views/sidebar/_hideButton_partial.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/app/views/sidebar/_hideButton_partial.html.erb -------------------------------------------------------------------------------- /assets/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/assets/images/buttons.png -------------------------------------------------------------------------------- /assets/javascripts/redmine_hide_sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/assets/javascripts/redmine_hide_sidebar.js -------------------------------------------------------------------------------- /assets/stylesheets/redmine_hide_sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/assets/stylesheets/redmine_hide_sidebar.css -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- 1 | # Plugin's routes 2 | # See: http://guides.rubyonrails.org/routing.html 3 | -------------------------------------------------------------------------------- /init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/init.rb -------------------------------------------------------------------------------- /lib/sidebar_hook_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nanego/redmine_hide_sidebar/HEAD/lib/sidebar_hook_listener.rb --------------------------------------------------------------------------------