├── .docker ├── app-runtime.Dockerfile ├── build.Dockerfile └── sam-runtime.Dockerfile ├── .drone.yml ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── assets ├── .babelrc ├── .eslintrc.js ├── js │ ├── app.js │ ├── bulma-event.js │ ├── user.js │ └── user │ │ ├── actions.js │ │ ├── components │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── Loading.js │ │ └── ScrollToTop.js │ │ ├── lib │ │ └── jump-anchor.js │ │ ├── pages │ │ ├── Advanced.js │ │ ├── Chagelog.js │ │ ├── Deployment.js │ │ ├── GettingStarted.js │ │ ├── Index.js │ │ ├── PrivacyPolicy.js │ │ └── QA.js │ │ ├── reducers.js │ │ └── slices │ │ └── header.js ├── package-lock.json ├── package.json ├── scss │ ├── app.scss │ ├── user.scss │ └── user │ │ ├── lib │ │ └── base.scss │ │ ├── page.scss │ │ └── page │ │ ├── getting-started.scss │ │ └── index.scss ├── static │ ├── favicon.ico │ ├── fonts │ │ ├── Aleo-latin-ext.woff2 │ │ └── Aleo-latin.woff2 │ ├── images │ │ ├── 2-1.png │ │ ├── 2-11.png │ │ ├── 2-12.png │ │ ├── 2-13.png │ │ ├── 2-14.png │ │ ├── 2-2.png │ │ ├── 2-3.png │ │ ├── 2-4.png │ │ ├── 2-5.png │ │ ├── 2-6.png │ │ ├── 2-7.png │ │ ├── 2-8.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── shadow-logo-x85.png │ └── logo3.png └── webpack.config.js ├── config ├── config.cr └── initializers │ └── database.cr ├── db ├── migrations │ ├── 20190629024602670_create_reports.cr │ ├── 20190629183124102_add_reports_role.cr │ ├── 20190629190027970_add_reports_from_chat.cr │ ├── 20190630173724906_create_votes.cr │ ├── 20190701152418031_create_clean_mode.cr │ ├── 20190702030730143_rename_reports_target_id.cr │ ├── 20190702032714201_add_reports_target_msg_id.cr │ ├── 20190702033252580_rename_reports_chat_id.cr │ ├── 20190705160550650_create_subfunctions.cr │ ├── 20190709021055679_create_true_indices.cr │ ├── 20190710201719457_rename_reports_post_id.cr │ ├── 20190710203233131_add_reports_post_id.cr │ ├── 20190710212209059_add_reports_detail.cr │ ├── 20190711195647879_create_error_counts.cr │ ├── 20190713024535877_create_max_lengths.cr │ ├── 20190714135852433_create_block_contents.cr │ ├── 20190720025312970_create_private_menus.cr │ ├── 20190720061240384_create_languages.cr │ ├── 20190721072644482_add_private_menus_group_name.cr │ ├── 20190731145317990_create_anti_messages.cr │ ├── 20190731151400326_add_anti_messages_status.cr │ ├── 20190803190051422_create_format_limits.cr │ ├── 20190816082522347_add_reports_appeal_post_id.cr │ ├── 20190816083047653_create_appeals.cr │ ├── 20190820075453305_create_templates.cr │ ├── 20190824222851957_create_toggles.cr │ ├── 20190827234108664_create_questions.cr │ ├── 20190827234220867_create_answers.cr │ ├── 20190909100606386_create_groups.cr │ ├── 20190911214338311_create_admins.cr │ ├── 20190913140150333_add_groups_managed.cr │ ├── 20190919172208640_add_block_contents_is_enabled.cr │ ├── 20190919211655640_add_block_contents_alias.cr │ ├── 20190923003538388_create_froms.cr │ ├── 20190924164018015_create_welcomes.cr │ ├── 20190926004140590_create_halal_white_lists.cr │ ├── 20190927083914509_rename_block_contents.cr │ ├── 20190927131753320_add_block_rules_in_message_and_nickname.cr │ ├── 20190927152450139_rename_block_rules_is_enabled.cr │ ├── 20190927175628930_create_global_rule_flags.cr │ ├── 20191001032501148_create_verification_modes.cr │ └── 20191001035246237_create_qa_suites.cr └── structure.sql ├── docker-compose.yml ├── locales ├── anti_service_msg │ └── zh-hans.yml ├── appeal │ └── zh-hans.yml ├── blocked_content │ └── zh-hans.yml ├── english.yml ├── from │ └── zh-hans.yml ├── global_rule_flags │ └── zh-hans.yml ├── incompatible │ └── zh-hans.yml ├── report │ └── zh-hans.yml ├── strict_mode │ └── zh-hans.yml ├── welcome │ └── zh-hans.yml ├── zh-hans.yml └── zh-hant.yml ├── sam.Dockerfile ├── sam.cr ├── shard.lock ├── shard.yml ├── spec ├── models │ ├── admin_spec.cr │ ├── anti_message_spec.cr │ ├── block_rule_spec.cr │ ├── format_limit_spec.cr │ ├── from_spec.cr │ ├── global_rule_flag_spec.cr │ ├── group_spec.cr │ ├── halal_white_list_spec.cr │ ├── qa_suite_spec.cr │ ├── question_spec.cr │ ├── template_spec.cr │ ├── toggle_spec.cr │ ├── verification_mode_spec.cr │ └── welcome_spec.cr ├── policr_spec.cr └── spec_helper.cr ├── src ├── models │ ├── admin.cr │ ├── answer.cr │ ├── anti_message.cr │ ├── appeal.cr │ ├── block_rule.cr │ ├── clean_mode.cr │ ├── error_count.cr │ ├── format_limit.cr │ ├── from.cr │ ├── global_rusle_flag.cr │ ├── group.cr │ ├── halal_white_list.cr │ ├── language.cr │ ├── max_length.cr │ ├── private_menu.cr │ ├── qa_suite.cr │ ├── question.cr │ ├── report.cr │ ├── subfunction.cr │ ├── template.cr │ ├── toggle.cr │ ├── true_index.cr │ ├── verification_mode.cr │ ├── vote.cr │ └── welcome.cr ├── policr.cr ├── policr │ ├── bot.cr │ ├── cache.cr │ ├── callbacker.cr │ ├── callbackers │ │ ├── afterwards.cr │ │ ├── anti_service_msg.cr │ │ ├── appeal.cr │ │ ├── baned_menu.cr │ │ ├── block_rule.cr │ │ ├── bot_join.cr │ │ ├── clean_mode.cr │ │ ├── custom.cr │ │ ├── delay_time.cr │ │ ├── format_limit.cr │ │ ├── from.cr │ │ ├── from_setting.cr │ │ ├── global_block_rule.cr │ │ ├── global_rule_flags.cr │ │ ├── hit_rule.cr │ │ ├── language.cr │ │ ├── manage.cr │ │ ├── max_length.cr │ │ ├── navigation.cr │ │ ├── private_forward.cr │ │ ├── private_forward_report.cr │ │ ├── report.cr │ │ ├── self_join.cr │ │ ├── settings.cr │ │ ├── strict_mode.cr │ │ ├── subfunctions.cr │ │ ├── template.cr │ │ ├── torture.cr │ │ ├── torture_time.cr │ │ ├── voting.cr │ │ ├── voting_apply_quiz.cr │ │ └── welcome.cr │ ├── cli.cr │ ├── commander.cr │ ├── commanders │ │ ├── anti_service_msg.cr │ │ ├── appeal.cr │ │ ├── clean_mode.cr │ │ ├── custom.cr │ │ ├── from.cr │ │ ├── global_rule_flags.cr │ │ ├── language.cr │ │ ├── navigation.cr │ │ ├── ping.cr │ │ ├── report.cr │ │ ├── settings.cr │ │ ├── start.cr │ │ ├── strict_mode.cr │ │ ├── subfunctions.cr │ │ ├── template.cr │ │ ├── torture_time.cr │ │ ├── voting_apply.cr │ │ └── welcome.cr │ ├── dsl.cr │ ├── handler.cr │ ├── handlers │ │ ├── add_global_rule.cr │ │ ├── add_rule.cr │ │ ├── add_voting_apply_quiz.cr │ │ ├── appeal_reply.cr │ │ ├── blocked_content.cr │ │ ├── blocked_nickname.cr │ │ ├── bot_join.cr │ │ ├── clean_mode_time_setting.cr │ │ ├── custom.cr │ │ ├── format_limit.cr │ │ ├── format_limit_setting.cr │ │ ├── from_setting.cr │ │ ├── halal_caption.cr │ │ ├── halal_message.cr │ │ ├── left_group.cr │ │ ├── max_length.cr │ │ ├── max_length_setting.cr │ │ ├── pinned_message.cr │ │ ├── private_chat.cr │ │ ├── private_chat_reply.cr │ │ ├── private_forward.cr │ │ ├── report_detail.cr │ │ ├── self_join.cr │ │ ├── self_left.cr │ │ ├── template_setting.cr │ │ ├── torture_time_setting.cr │ │ ├── unverified_message.cr │ │ ├── update_chat_photo.cr │ │ ├── update_chat_title.cr │ │ ├── update_rule.cr │ │ ├── update_voting_apply_quiz_question.cr │ │ ├── user_join.cr │ │ └── welcome_setting.cr │ ├── logging.cr │ ├── parser.cr │ ├── parsers │ │ ├── block_content.cr │ │ ├── voting_apply.cr │ │ └── welcome_content.cr │ ├── question.cr │ ├── scan.cr │ ├── schdule.cr │ ├── state.cr │ ├── types.cr │ ├── verification.cr │ ├── verifications │ │ ├── custom.cr │ │ ├── default.cr │ │ ├── dynamic.cr │ │ ├── gomoku.cr │ │ └── image.cr │ ├── version.cr │ ├── web.cr │ ├── web │ │ └── logger_handler.cr │ └── wrappers.cr └── views │ └── user.html.ecr └── texts ├── adv_only_restriction.md ├── adv_sticker_mode.md ├── adv_template_embed_links.md ├── adv_template_embed_vars.md ├── adv_unable_error.md ├── adv_welcome_add_button.md ├── adv_welcome_embed_links.md ├── adv_welcome_embed_vars.md ├── pri_data_storage.md ├── pri_message_access.md ├── pri_term_desc.md ├── qa_afterwards.md ├── qa_best_custom.md ├── qa_best_verification.md ├── qa_clean_mode.md ├── qa_distrust_button_use.md ├── qa_examine.md ├── qa_from.md ├── qa_global_rules.md ├── qa_halal.md ├── qa_inline_keyboard_invalid.md ├── qa_no_time_limit.md ├── qa_record_mode.md ├── qa_report.md ├── qa_trust_admin.md ├── qa_verification.md ├── qa_verification_failure.md ├── qa_verification_failure_result.md └── qa_whitelist.md /.docker/app-runtime.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/.docker/app-runtime.Dockerfile -------------------------------------------------------------------------------- /.docker/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/.docker/build.Dockerfile -------------------------------------------------------------------------------- /.docker/sam-runtime.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/.docker/sam-runtime.Dockerfile -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/README.md -------------------------------------------------------------------------------- /assets/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/.babelrc -------------------------------------------------------------------------------- /assets/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/.eslintrc.js -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/bulma-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/bulma-event.js -------------------------------------------------------------------------------- /assets/js/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user.js -------------------------------------------------------------------------------- /assets/js/user/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/actions.js -------------------------------------------------------------------------------- /assets/js/user/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/components/Footer.js -------------------------------------------------------------------------------- /assets/js/user/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/components/Header.js -------------------------------------------------------------------------------- /assets/js/user/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/components/Loading.js -------------------------------------------------------------------------------- /assets/js/user/components/ScrollToTop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/components/ScrollToTop.js -------------------------------------------------------------------------------- /assets/js/user/lib/jump-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/lib/jump-anchor.js -------------------------------------------------------------------------------- /assets/js/user/pages/Advanced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/Advanced.js -------------------------------------------------------------------------------- /assets/js/user/pages/Chagelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/Chagelog.js -------------------------------------------------------------------------------- /assets/js/user/pages/Deployment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/Deployment.js -------------------------------------------------------------------------------- /assets/js/user/pages/GettingStarted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/GettingStarted.js -------------------------------------------------------------------------------- /assets/js/user/pages/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/Index.js -------------------------------------------------------------------------------- /assets/js/user/pages/PrivacyPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/PrivacyPolicy.js -------------------------------------------------------------------------------- /assets/js/user/pages/QA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/pages/QA.js -------------------------------------------------------------------------------- /assets/js/user/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/reducers.js -------------------------------------------------------------------------------- /assets/js/user/slices/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/js/user/slices/header.js -------------------------------------------------------------------------------- /assets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/package-lock.json -------------------------------------------------------------------------------- /assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/package.json -------------------------------------------------------------------------------- /assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/scss/app.scss -------------------------------------------------------------------------------- /assets/scss/user.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/scss/user.scss -------------------------------------------------------------------------------- /assets/scss/user/lib/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/scss/user/lib/base.scss -------------------------------------------------------------------------------- /assets/scss/user/page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/scss/user/page.scss -------------------------------------------------------------------------------- /assets/scss/user/page/getting-started.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/scss/user/page/getting-started.scss -------------------------------------------------------------------------------- /assets/scss/user/page/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/scss/user/page/index.scss -------------------------------------------------------------------------------- /assets/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/favicon.ico -------------------------------------------------------------------------------- /assets/static/fonts/Aleo-latin-ext.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/fonts/Aleo-latin-ext.woff2 -------------------------------------------------------------------------------- /assets/static/fonts/Aleo-latin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/fonts/Aleo-latin.woff2 -------------------------------------------------------------------------------- /assets/static/images/2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-1.png -------------------------------------------------------------------------------- /assets/static/images/2-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-11.png -------------------------------------------------------------------------------- /assets/static/images/2-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-12.png -------------------------------------------------------------------------------- /assets/static/images/2-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-13.png -------------------------------------------------------------------------------- /assets/static/images/2-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-14.png -------------------------------------------------------------------------------- /assets/static/images/2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-2.png -------------------------------------------------------------------------------- /assets/static/images/2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-3.png -------------------------------------------------------------------------------- /assets/static/images/2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-4.png -------------------------------------------------------------------------------- /assets/static/images/2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-5.png -------------------------------------------------------------------------------- /assets/static/images/2-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-6.png -------------------------------------------------------------------------------- /assets/static/images/2-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-7.png -------------------------------------------------------------------------------- /assets/static/images/2-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/2-8.png -------------------------------------------------------------------------------- /assets/static/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/5.png -------------------------------------------------------------------------------- /assets/static/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/6.png -------------------------------------------------------------------------------- /assets/static/images/shadow-logo-x85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/images/shadow-logo-x85.png -------------------------------------------------------------------------------- /assets/static/logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/static/logo3.png -------------------------------------------------------------------------------- /assets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/assets/webpack.config.js -------------------------------------------------------------------------------- /config/config.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/config/config.cr -------------------------------------------------------------------------------- /config/initializers/database.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/config/initializers/database.cr -------------------------------------------------------------------------------- /db/migrations/20190629024602670_create_reports.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190629024602670_create_reports.cr -------------------------------------------------------------------------------- /db/migrations/20190629183124102_add_reports_role.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190629183124102_add_reports_role.cr -------------------------------------------------------------------------------- /db/migrations/20190629190027970_add_reports_from_chat.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190629190027970_add_reports_from_chat.cr -------------------------------------------------------------------------------- /db/migrations/20190630173724906_create_votes.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190630173724906_create_votes.cr -------------------------------------------------------------------------------- /db/migrations/20190701152418031_create_clean_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190701152418031_create_clean_mode.cr -------------------------------------------------------------------------------- /db/migrations/20190702030730143_rename_reports_target_id.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190702030730143_rename_reports_target_id.cr -------------------------------------------------------------------------------- /db/migrations/20190702032714201_add_reports_target_msg_id.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190702032714201_add_reports_target_msg_id.cr -------------------------------------------------------------------------------- /db/migrations/20190702033252580_rename_reports_chat_id.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190702033252580_rename_reports_chat_id.cr -------------------------------------------------------------------------------- /db/migrations/20190705160550650_create_subfunctions.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190705160550650_create_subfunctions.cr -------------------------------------------------------------------------------- /db/migrations/20190709021055679_create_true_indices.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190709021055679_create_true_indices.cr -------------------------------------------------------------------------------- /db/migrations/20190710201719457_rename_reports_post_id.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190710201719457_rename_reports_post_id.cr -------------------------------------------------------------------------------- /db/migrations/20190710203233131_add_reports_post_id.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190710203233131_add_reports_post_id.cr -------------------------------------------------------------------------------- /db/migrations/20190710212209059_add_reports_detail.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190710212209059_add_reports_detail.cr -------------------------------------------------------------------------------- /db/migrations/20190711195647879_create_error_counts.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190711195647879_create_error_counts.cr -------------------------------------------------------------------------------- /db/migrations/20190713024535877_create_max_lengths.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190713024535877_create_max_lengths.cr -------------------------------------------------------------------------------- /db/migrations/20190714135852433_create_block_contents.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190714135852433_create_block_contents.cr -------------------------------------------------------------------------------- /db/migrations/20190720025312970_create_private_menus.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190720025312970_create_private_menus.cr -------------------------------------------------------------------------------- /db/migrations/20190720061240384_create_languages.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190720061240384_create_languages.cr -------------------------------------------------------------------------------- /db/migrations/20190721072644482_add_private_menus_group_name.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190721072644482_add_private_menus_group_name.cr -------------------------------------------------------------------------------- /db/migrations/20190731145317990_create_anti_messages.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190731145317990_create_anti_messages.cr -------------------------------------------------------------------------------- /db/migrations/20190731151400326_add_anti_messages_status.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190731151400326_add_anti_messages_status.cr -------------------------------------------------------------------------------- /db/migrations/20190803190051422_create_format_limits.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190803190051422_create_format_limits.cr -------------------------------------------------------------------------------- /db/migrations/20190816082522347_add_reports_appeal_post_id.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190816082522347_add_reports_appeal_post_id.cr -------------------------------------------------------------------------------- /db/migrations/20190816083047653_create_appeals.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190816083047653_create_appeals.cr -------------------------------------------------------------------------------- /db/migrations/20190820075453305_create_templates.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190820075453305_create_templates.cr -------------------------------------------------------------------------------- /db/migrations/20190824222851957_create_toggles.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190824222851957_create_toggles.cr -------------------------------------------------------------------------------- /db/migrations/20190827234108664_create_questions.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190827234108664_create_questions.cr -------------------------------------------------------------------------------- /db/migrations/20190827234220867_create_answers.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190827234220867_create_answers.cr -------------------------------------------------------------------------------- /db/migrations/20190909100606386_create_groups.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190909100606386_create_groups.cr -------------------------------------------------------------------------------- /db/migrations/20190911214338311_create_admins.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190911214338311_create_admins.cr -------------------------------------------------------------------------------- /db/migrations/20190913140150333_add_groups_managed.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190913140150333_add_groups_managed.cr -------------------------------------------------------------------------------- /db/migrations/20190919172208640_add_block_contents_is_enabled.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190919172208640_add_block_contents_is_enabled.cr -------------------------------------------------------------------------------- /db/migrations/20190919211655640_add_block_contents_alias.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190919211655640_add_block_contents_alias.cr -------------------------------------------------------------------------------- /db/migrations/20190923003538388_create_froms.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190923003538388_create_froms.cr -------------------------------------------------------------------------------- /db/migrations/20190924164018015_create_welcomes.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190924164018015_create_welcomes.cr -------------------------------------------------------------------------------- /db/migrations/20190926004140590_create_halal_white_lists.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190926004140590_create_halal_white_lists.cr -------------------------------------------------------------------------------- /db/migrations/20190927083914509_rename_block_contents.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190927083914509_rename_block_contents.cr -------------------------------------------------------------------------------- /db/migrations/20190927131753320_add_block_rules_in_message_and_nickname.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190927131753320_add_block_rules_in_message_and_nickname.cr -------------------------------------------------------------------------------- /db/migrations/20190927152450139_rename_block_rules_is_enabled.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190927152450139_rename_block_rules_is_enabled.cr -------------------------------------------------------------------------------- /db/migrations/20190927175628930_create_global_rule_flags.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20190927175628930_create_global_rule_flags.cr -------------------------------------------------------------------------------- /db/migrations/20191001032501148_create_verification_modes.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20191001032501148_create_verification_modes.cr -------------------------------------------------------------------------------- /db/migrations/20191001035246237_create_qa_suites.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/migrations/20191001035246237_create_qa_suites.cr -------------------------------------------------------------------------------- /db/structure.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/db/structure.sql -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /locales/anti_service_msg/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/anti_service_msg/zh-hans.yml -------------------------------------------------------------------------------- /locales/appeal/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/appeal/zh-hans.yml -------------------------------------------------------------------------------- /locales/blocked_content/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/blocked_content/zh-hans.yml -------------------------------------------------------------------------------- /locales/english.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/english.yml -------------------------------------------------------------------------------- /locales/from/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/from/zh-hans.yml -------------------------------------------------------------------------------- /locales/global_rule_flags/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/global_rule_flags/zh-hans.yml -------------------------------------------------------------------------------- /locales/incompatible/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/incompatible/zh-hans.yml -------------------------------------------------------------------------------- /locales/report/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/report/zh-hans.yml -------------------------------------------------------------------------------- /locales/strict_mode/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/strict_mode/zh-hans.yml -------------------------------------------------------------------------------- /locales/welcome/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/welcome/zh-hans.yml -------------------------------------------------------------------------------- /locales/zh-hans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/zh-hans.yml -------------------------------------------------------------------------------- /locales/zh-hant.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/locales/zh-hant.yml -------------------------------------------------------------------------------- /sam.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/sam.Dockerfile -------------------------------------------------------------------------------- /sam.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/sam.cr -------------------------------------------------------------------------------- /shard.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/shard.lock -------------------------------------------------------------------------------- /shard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/shard.yml -------------------------------------------------------------------------------- /spec/models/admin_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/admin_spec.cr -------------------------------------------------------------------------------- /spec/models/anti_message_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/anti_message_spec.cr -------------------------------------------------------------------------------- /spec/models/block_rule_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/block_rule_spec.cr -------------------------------------------------------------------------------- /spec/models/format_limit_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/format_limit_spec.cr -------------------------------------------------------------------------------- /spec/models/from_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/from_spec.cr -------------------------------------------------------------------------------- /spec/models/global_rule_flag_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/global_rule_flag_spec.cr -------------------------------------------------------------------------------- /spec/models/group_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/group_spec.cr -------------------------------------------------------------------------------- /spec/models/halal_white_list_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/halal_white_list_spec.cr -------------------------------------------------------------------------------- /spec/models/qa_suite_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/qa_suite_spec.cr -------------------------------------------------------------------------------- /spec/models/question_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/question_spec.cr -------------------------------------------------------------------------------- /spec/models/template_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/template_spec.cr -------------------------------------------------------------------------------- /spec/models/toggle_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/toggle_spec.cr -------------------------------------------------------------------------------- /spec/models/verification_mode_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/verification_mode_spec.cr -------------------------------------------------------------------------------- /spec/models/welcome_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/models/welcome_spec.cr -------------------------------------------------------------------------------- /spec/policr_spec.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/policr_spec.cr -------------------------------------------------------------------------------- /spec/spec_helper.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/spec/spec_helper.cr -------------------------------------------------------------------------------- /src/models/admin.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/admin.cr -------------------------------------------------------------------------------- /src/models/answer.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/answer.cr -------------------------------------------------------------------------------- /src/models/anti_message.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/anti_message.cr -------------------------------------------------------------------------------- /src/models/appeal.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/appeal.cr -------------------------------------------------------------------------------- /src/models/block_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/block_rule.cr -------------------------------------------------------------------------------- /src/models/clean_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/clean_mode.cr -------------------------------------------------------------------------------- /src/models/error_count.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/error_count.cr -------------------------------------------------------------------------------- /src/models/format_limit.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/format_limit.cr -------------------------------------------------------------------------------- /src/models/from.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/from.cr -------------------------------------------------------------------------------- /src/models/global_rusle_flag.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/global_rusle_flag.cr -------------------------------------------------------------------------------- /src/models/group.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/group.cr -------------------------------------------------------------------------------- /src/models/halal_white_list.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/halal_white_list.cr -------------------------------------------------------------------------------- /src/models/language.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/language.cr -------------------------------------------------------------------------------- /src/models/max_length.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/max_length.cr -------------------------------------------------------------------------------- /src/models/private_menu.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/private_menu.cr -------------------------------------------------------------------------------- /src/models/qa_suite.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/qa_suite.cr -------------------------------------------------------------------------------- /src/models/question.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/question.cr -------------------------------------------------------------------------------- /src/models/report.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/report.cr -------------------------------------------------------------------------------- /src/models/subfunction.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/subfunction.cr -------------------------------------------------------------------------------- /src/models/template.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/template.cr -------------------------------------------------------------------------------- /src/models/toggle.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/toggle.cr -------------------------------------------------------------------------------- /src/models/true_index.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/true_index.cr -------------------------------------------------------------------------------- /src/models/verification_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/verification_mode.cr -------------------------------------------------------------------------------- /src/models/vote.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/vote.cr -------------------------------------------------------------------------------- /src/models/welcome.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/models/welcome.cr -------------------------------------------------------------------------------- /src/policr.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr.cr -------------------------------------------------------------------------------- /src/policr/bot.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/bot.cr -------------------------------------------------------------------------------- /src/policr/cache.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/cache.cr -------------------------------------------------------------------------------- /src/policr/callbacker.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbacker.cr -------------------------------------------------------------------------------- /src/policr/callbackers/afterwards.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/afterwards.cr -------------------------------------------------------------------------------- /src/policr/callbackers/anti_service_msg.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/anti_service_msg.cr -------------------------------------------------------------------------------- /src/policr/callbackers/appeal.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/appeal.cr -------------------------------------------------------------------------------- /src/policr/callbackers/baned_menu.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/baned_menu.cr -------------------------------------------------------------------------------- /src/policr/callbackers/block_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/block_rule.cr -------------------------------------------------------------------------------- /src/policr/callbackers/bot_join.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/bot_join.cr -------------------------------------------------------------------------------- /src/policr/callbackers/clean_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/clean_mode.cr -------------------------------------------------------------------------------- /src/policr/callbackers/custom.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/custom.cr -------------------------------------------------------------------------------- /src/policr/callbackers/delay_time.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/delay_time.cr -------------------------------------------------------------------------------- /src/policr/callbackers/format_limit.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/format_limit.cr -------------------------------------------------------------------------------- /src/policr/callbackers/from.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/from.cr -------------------------------------------------------------------------------- /src/policr/callbackers/from_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/from_setting.cr -------------------------------------------------------------------------------- /src/policr/callbackers/global_block_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/global_block_rule.cr -------------------------------------------------------------------------------- /src/policr/callbackers/global_rule_flags.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/global_rule_flags.cr -------------------------------------------------------------------------------- /src/policr/callbackers/hit_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/hit_rule.cr -------------------------------------------------------------------------------- /src/policr/callbackers/language.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/language.cr -------------------------------------------------------------------------------- /src/policr/callbackers/manage.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/manage.cr -------------------------------------------------------------------------------- /src/policr/callbackers/max_length.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/max_length.cr -------------------------------------------------------------------------------- /src/policr/callbackers/navigation.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/navigation.cr -------------------------------------------------------------------------------- /src/policr/callbackers/private_forward.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/private_forward.cr -------------------------------------------------------------------------------- /src/policr/callbackers/private_forward_report.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/private_forward_report.cr -------------------------------------------------------------------------------- /src/policr/callbackers/report.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/report.cr -------------------------------------------------------------------------------- /src/policr/callbackers/self_join.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/self_join.cr -------------------------------------------------------------------------------- /src/policr/callbackers/settings.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/settings.cr -------------------------------------------------------------------------------- /src/policr/callbackers/strict_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/strict_mode.cr -------------------------------------------------------------------------------- /src/policr/callbackers/subfunctions.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/subfunctions.cr -------------------------------------------------------------------------------- /src/policr/callbackers/template.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/template.cr -------------------------------------------------------------------------------- /src/policr/callbackers/torture.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/torture.cr -------------------------------------------------------------------------------- /src/policr/callbackers/torture_time.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/torture_time.cr -------------------------------------------------------------------------------- /src/policr/callbackers/voting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/voting.cr -------------------------------------------------------------------------------- /src/policr/callbackers/voting_apply_quiz.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/voting_apply_quiz.cr -------------------------------------------------------------------------------- /src/policr/callbackers/welcome.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/callbackers/welcome.cr -------------------------------------------------------------------------------- /src/policr/cli.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/cli.cr -------------------------------------------------------------------------------- /src/policr/commander.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commander.cr -------------------------------------------------------------------------------- /src/policr/commanders/anti_service_msg.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/anti_service_msg.cr -------------------------------------------------------------------------------- /src/policr/commanders/appeal.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/appeal.cr -------------------------------------------------------------------------------- /src/policr/commanders/clean_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/clean_mode.cr -------------------------------------------------------------------------------- /src/policr/commanders/custom.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/custom.cr -------------------------------------------------------------------------------- /src/policr/commanders/from.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/from.cr -------------------------------------------------------------------------------- /src/policr/commanders/global_rule_flags.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/global_rule_flags.cr -------------------------------------------------------------------------------- /src/policr/commanders/language.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/language.cr -------------------------------------------------------------------------------- /src/policr/commanders/navigation.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/navigation.cr -------------------------------------------------------------------------------- /src/policr/commanders/ping.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/ping.cr -------------------------------------------------------------------------------- /src/policr/commanders/report.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/report.cr -------------------------------------------------------------------------------- /src/policr/commanders/settings.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/settings.cr -------------------------------------------------------------------------------- /src/policr/commanders/start.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/start.cr -------------------------------------------------------------------------------- /src/policr/commanders/strict_mode.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/strict_mode.cr -------------------------------------------------------------------------------- /src/policr/commanders/subfunctions.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/subfunctions.cr -------------------------------------------------------------------------------- /src/policr/commanders/template.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/template.cr -------------------------------------------------------------------------------- /src/policr/commanders/torture_time.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/torture_time.cr -------------------------------------------------------------------------------- /src/policr/commanders/voting_apply.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/voting_apply.cr -------------------------------------------------------------------------------- /src/policr/commanders/welcome.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/commanders/welcome.cr -------------------------------------------------------------------------------- /src/policr/dsl.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/dsl.cr -------------------------------------------------------------------------------- /src/policr/handler.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handler.cr -------------------------------------------------------------------------------- /src/policr/handlers/add_global_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/add_global_rule.cr -------------------------------------------------------------------------------- /src/policr/handlers/add_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/add_rule.cr -------------------------------------------------------------------------------- /src/policr/handlers/add_voting_apply_quiz.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/add_voting_apply_quiz.cr -------------------------------------------------------------------------------- /src/policr/handlers/appeal_reply.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/appeal_reply.cr -------------------------------------------------------------------------------- /src/policr/handlers/blocked_content.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/blocked_content.cr -------------------------------------------------------------------------------- /src/policr/handlers/blocked_nickname.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/blocked_nickname.cr -------------------------------------------------------------------------------- /src/policr/handlers/bot_join.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/bot_join.cr -------------------------------------------------------------------------------- /src/policr/handlers/clean_mode_time_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/clean_mode_time_setting.cr -------------------------------------------------------------------------------- /src/policr/handlers/custom.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/custom.cr -------------------------------------------------------------------------------- /src/policr/handlers/format_limit.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/format_limit.cr -------------------------------------------------------------------------------- /src/policr/handlers/format_limit_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/format_limit_setting.cr -------------------------------------------------------------------------------- /src/policr/handlers/from_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/from_setting.cr -------------------------------------------------------------------------------- /src/policr/handlers/halal_caption.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/halal_caption.cr -------------------------------------------------------------------------------- /src/policr/handlers/halal_message.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/halal_message.cr -------------------------------------------------------------------------------- /src/policr/handlers/left_group.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/left_group.cr -------------------------------------------------------------------------------- /src/policr/handlers/max_length.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/max_length.cr -------------------------------------------------------------------------------- /src/policr/handlers/max_length_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/max_length_setting.cr -------------------------------------------------------------------------------- /src/policr/handlers/pinned_message.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/pinned_message.cr -------------------------------------------------------------------------------- /src/policr/handlers/private_chat.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/private_chat.cr -------------------------------------------------------------------------------- /src/policr/handlers/private_chat_reply.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/private_chat_reply.cr -------------------------------------------------------------------------------- /src/policr/handlers/private_forward.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/private_forward.cr -------------------------------------------------------------------------------- /src/policr/handlers/report_detail.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/report_detail.cr -------------------------------------------------------------------------------- /src/policr/handlers/self_join.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/self_join.cr -------------------------------------------------------------------------------- /src/policr/handlers/self_left.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/self_left.cr -------------------------------------------------------------------------------- /src/policr/handlers/template_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/template_setting.cr -------------------------------------------------------------------------------- /src/policr/handlers/torture_time_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/torture_time_setting.cr -------------------------------------------------------------------------------- /src/policr/handlers/unverified_message.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/unverified_message.cr -------------------------------------------------------------------------------- /src/policr/handlers/update_chat_photo.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/update_chat_photo.cr -------------------------------------------------------------------------------- /src/policr/handlers/update_chat_title.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/update_chat_title.cr -------------------------------------------------------------------------------- /src/policr/handlers/update_rule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/update_rule.cr -------------------------------------------------------------------------------- /src/policr/handlers/update_voting_apply_quiz_question.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/update_voting_apply_quiz_question.cr -------------------------------------------------------------------------------- /src/policr/handlers/user_join.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/user_join.cr -------------------------------------------------------------------------------- /src/policr/handlers/welcome_setting.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/handlers/welcome_setting.cr -------------------------------------------------------------------------------- /src/policr/logging.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/logging.cr -------------------------------------------------------------------------------- /src/policr/parser.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/parser.cr -------------------------------------------------------------------------------- /src/policr/parsers/block_content.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/parsers/block_content.cr -------------------------------------------------------------------------------- /src/policr/parsers/voting_apply.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/parsers/voting_apply.cr -------------------------------------------------------------------------------- /src/policr/parsers/welcome_content.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/parsers/welcome_content.cr -------------------------------------------------------------------------------- /src/policr/question.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/question.cr -------------------------------------------------------------------------------- /src/policr/scan.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/scan.cr -------------------------------------------------------------------------------- /src/policr/schdule.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/schdule.cr -------------------------------------------------------------------------------- /src/policr/state.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/state.cr -------------------------------------------------------------------------------- /src/policr/types.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/types.cr -------------------------------------------------------------------------------- /src/policr/verification.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/verification.cr -------------------------------------------------------------------------------- /src/policr/verifications/custom.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/verifications/custom.cr -------------------------------------------------------------------------------- /src/policr/verifications/default.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/verifications/default.cr -------------------------------------------------------------------------------- /src/policr/verifications/dynamic.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/verifications/dynamic.cr -------------------------------------------------------------------------------- /src/policr/verifications/gomoku.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/verifications/gomoku.cr -------------------------------------------------------------------------------- /src/policr/verifications/image.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/verifications/image.cr -------------------------------------------------------------------------------- /src/policr/version.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/version.cr -------------------------------------------------------------------------------- /src/policr/web.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/web.cr -------------------------------------------------------------------------------- /src/policr/web/logger_handler.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/web/logger_handler.cr -------------------------------------------------------------------------------- /src/policr/wrappers.cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/policr/wrappers.cr -------------------------------------------------------------------------------- /src/views/user.html.ecr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/src/views/user.html.ecr -------------------------------------------------------------------------------- /texts/adv_only_restriction.md: -------------------------------------------------------------------------------- 1 | 使用`/torture_time`指令,选择「无验证倒计时」即可。附加阅读请看常见问题中的[不限时验证危害](/qa#no_time_limit)。 2 | -------------------------------------------------------------------------------- /texts/adv_sticker_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/adv_sticker_mode.md -------------------------------------------------------------------------------- /texts/adv_template_embed_links.md: -------------------------------------------------------------------------------- 1 | 方式与[欢迎消息中嵌入链接](#welcome_embed_links)完全相同。 2 | -------------------------------------------------------------------------------- /texts/adv_template_embed_vars.md: -------------------------------------------------------------------------------- 1 | 方式与[欢迎消息中使用变量](#welcome_embed_vars)完全相同。 2 | -------------------------------------------------------------------------------- /texts/adv_unable_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/adv_unable_error.md -------------------------------------------------------------------------------- /texts/adv_welcome_add_button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/adv_welcome_add_button.md -------------------------------------------------------------------------------- /texts/adv_welcome_embed_links.md: -------------------------------------------------------------------------------- 1 | 此处的链接并非单纯的可跳转的 URL 地址,而是指在显示上可以自定义文本类型的内联链接。没有什么黑魔法或自创标签,使用 Markdown 格式就够了。例如: 2 | 3 | > `[访问 Google](https://www.google.com)` 4 | -------------------------------------------------------------------------------- /texts/adv_welcome_embed_vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/adv_welcome_embed_vars.md -------------------------------------------------------------------------------- /texts/pri_data_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/pri_data_storage.md -------------------------------------------------------------------------------- /texts/pri_message_access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/pri_message_access.md -------------------------------------------------------------------------------- /texts/pri_term_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/pri_term_desc.md -------------------------------------------------------------------------------- /texts/qa_afterwards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_afterwards.md -------------------------------------------------------------------------------- /texts/qa_best_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_best_custom.md -------------------------------------------------------------------------------- /texts/qa_best_verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_best_verification.md -------------------------------------------------------------------------------- /texts/qa_clean_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_clean_mode.md -------------------------------------------------------------------------------- /texts/qa_distrust_button_use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_distrust_button_use.md -------------------------------------------------------------------------------- /texts/qa_examine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_examine.md -------------------------------------------------------------------------------- /texts/qa_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_from.md -------------------------------------------------------------------------------- /texts/qa_global_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_global_rules.md -------------------------------------------------------------------------------- /texts/qa_halal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_halal.md -------------------------------------------------------------------------------- /texts/qa_inline_keyboard_invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_inline_keyboard_invalid.md -------------------------------------------------------------------------------- /texts/qa_no_time_limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_no_time_limit.md -------------------------------------------------------------------------------- /texts/qa_record_mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_record_mode.md -------------------------------------------------------------------------------- /texts/qa_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_report.md -------------------------------------------------------------------------------- /texts/qa_trust_admin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_trust_admin.md -------------------------------------------------------------------------------- /texts/qa_verification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_verification.md -------------------------------------------------------------------------------- /texts/qa_verification_failure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_verification_failure.md -------------------------------------------------------------------------------- /texts/qa_verification_failure_result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_verification_failure_result.md -------------------------------------------------------------------------------- /texts/qa_whitelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hentioe/policr/HEAD/texts/qa_whitelist.md --------------------------------------------------------------------------------