max tokens

~2658 tokens

├── .travis.yml
├── CHANGELOG.md
├── Dockerfile
├── Gemfile
├── MIT-LICENSE
├── README.md
├── app
    ├── controllers
    │   └── default_custom_query_setting_controller.rb
    ├── helpers
    │   └── default_custom_query_helper.rb
    ├── hooks
    │   └── issues_controller_hook.rb
    ├── models
    │   └── projects_default_query.rb
    ├── patches
    │   ├── controllers
    │   │   └── issues_controller_patch.rb
    │   ├── helpers
    │   │   └── projects_helper_patch.rb
    │   └── models
    │   │   ├── issue_query_patch.rb
    │   │   ├── project_patch.rb
    │   │   └── query_patch.rb
    └── views
    │   ├── default_custom_query_setting
    │       └── _form.html.erb
    │   └── issues
    │       └── _sidebar_issues_bottom.html.erb
├── config
    ├── locales
    │   ├── en.yml
    │   ├── fr.yml
    │   ├── ja.yml
    │   ├── ru.yml
    │   ├── tr.yml
    │   └── zh.yml
    └── routes.rb
├── db
    └── migrate
    │   └── 001_create_projects_default_queries.rb
├── docker-compose.yml
├── init.rb
├── lib
    └── default_custom_query.rb
└── test
    ├── database.travis.yml
    ├── factories
        ├── default_query.rb
        ├── enabled_module.rb
        ├── issue_query.rb
        ├── member.rb
        ├── project.rb
        ├── role.rb
        └── user.rb
    ├── integration
        ├── issues_with_default_query_test.rb
        └── manage_default_query_test.rb
    └── test_helper.rb


/.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/.travis.yml


--------------------------------------------------------------------------------
/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/CHANGELOG.md


--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/Dockerfile


--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/Gemfile


--------------------------------------------------------------------------------
/MIT-LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/MIT-LICENSE


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/README.md


--------------------------------------------------------------------------------
/app/controllers/default_custom_query_setting_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/controllers/default_custom_query_setting_controller.rb


--------------------------------------------------------------------------------
/app/helpers/default_custom_query_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/helpers/default_custom_query_helper.rb


--------------------------------------------------------------------------------
/app/hooks/issues_controller_hook.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/hooks/issues_controller_hook.rb


--------------------------------------------------------------------------------
/app/models/projects_default_query.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/models/projects_default_query.rb


--------------------------------------------------------------------------------
/app/patches/controllers/issues_controller_patch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/patches/controllers/issues_controller_patch.rb


--------------------------------------------------------------------------------
/app/patches/helpers/projects_helper_patch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/patches/helpers/projects_helper_patch.rb


--------------------------------------------------------------------------------
/app/patches/models/issue_query_patch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/patches/models/issue_query_patch.rb


--------------------------------------------------------------------------------
/app/patches/models/project_patch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/patches/models/project_patch.rb


--------------------------------------------------------------------------------
/app/patches/models/query_patch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/patches/models/query_patch.rb


--------------------------------------------------------------------------------
/app/views/default_custom_query_setting/_form.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/views/default_custom_query_setting/_form.html.erb


--------------------------------------------------------------------------------
/app/views/issues/_sidebar_issues_bottom.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/app/views/issues/_sidebar_issues_bottom.html.erb


--------------------------------------------------------------------------------
/config/locales/en.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/locales/en.yml


--------------------------------------------------------------------------------
/config/locales/fr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/locales/fr.yml


--------------------------------------------------------------------------------
/config/locales/ja.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/locales/ja.yml


--------------------------------------------------------------------------------
/config/locales/ru.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/locales/ru.yml


--------------------------------------------------------------------------------
/config/locales/tr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/locales/tr.yml


--------------------------------------------------------------------------------
/config/locales/zh.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/locales/zh.yml


--------------------------------------------------------------------------------
/config/routes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/config/routes.rb


--------------------------------------------------------------------------------
/db/migrate/001_create_projects_default_queries.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/db/migrate/001_create_projects_default_queries.rb


--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/docker-compose.yml


--------------------------------------------------------------------------------
/init.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/init.rb


--------------------------------------------------------------------------------
/lib/default_custom_query.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/lib/default_custom_query.rb


--------------------------------------------------------------------------------
/test/database.travis.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/database.travis.yml


--------------------------------------------------------------------------------
/test/factories/default_query.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/default_query.rb


--------------------------------------------------------------------------------
/test/factories/enabled_module.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/enabled_module.rb


--------------------------------------------------------------------------------
/test/factories/issue_query.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/issue_query.rb


--------------------------------------------------------------------------------
/test/factories/member.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/member.rb


--------------------------------------------------------------------------------
/test/factories/project.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/project.rb


--------------------------------------------------------------------------------
/test/factories/role.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/role.rb


--------------------------------------------------------------------------------
/test/factories/user.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/factories/user.rb


--------------------------------------------------------------------------------
/test/integration/issues_with_default_query_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/integration/issues_with_default_query_test.rb


--------------------------------------------------------------------------------
/test/integration/manage_default_query_test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/integration/manage_default_query_test.rb


--------------------------------------------------------------------------------
/test/test_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hidakatsuya/redmine_default_custom_query/HEAD/test/test_helper.rb


--------------------------------------------------------------------------------