├── .circleci └── config.yml ├── .codeclimate.yml ├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── codeql.yml │ ├── rails.yml │ ├── secrets.yml │ └── semgrep.yml ├── .gitignore ├── .gitleaksignore ├── .vscode └── settings.json ├── Capfile ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── README.md ├── Rakefile ├── SECURITY.md ├── Vagrantfile ├── app ├── admin │ ├── admin_user.rb │ ├── chapter.rb │ ├── chapter_lead.rb │ ├── dashboard.rb │ ├── event.rb │ ├── event_announcement_mailer_task.rb │ ├── event_automatic_notification_task.rb │ ├── event_mailer_task.rb │ ├── event_registration.rb │ ├── event_session.rb │ ├── event_session_comment.rb │ ├── event_type.rb │ ├── job.rb │ ├── page.rb │ ├── page_access_permission.rb │ ├── user.rb │ └── venue.rb ├── assets │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── default_image.png │ │ ├── google │ │ │ ├── btn_google_signin.png │ │ │ └── btn_google_signin_sm.png │ │ ├── hardwear_dates.jpg │ │ ├── hardwear_transparent.png │ │ ├── nu1.jpeg │ │ ├── nu_ig1.png │ │ ├── null-blog-banner_white.png │ │ ├── null-logo.jpg │ │ ├── null_logo.png │ │ ├── null_logo1.png │ │ ├── nullcon_transparent_logo_0.jpg │ │ ├── rails.png │ │ └── sm_icons │ │ │ ├── facebook.png │ │ │ ├── group.png │ │ │ └── twitter.png │ ├── javascripts │ │ ├── active_admin.js │ │ ├── api.js.coffee │ │ ├── application.js │ │ ├── chapters.js.coffee │ │ ├── event_mailer_tasks.js.coffee │ │ ├── event_registrations.js.coffee │ │ ├── event_sessions.js.coffee │ │ ├── event_types.js.coffee │ │ ├── events.js.coffee │ │ ├── home.js.coffee │ │ ├── integrations │ │ │ └── slackbot.js.coffee │ │ ├── leads │ │ │ ├── chapters.js.coffee │ │ │ ├── event_registrations.js.coffee │ │ │ ├── event_sessions.js.coffee │ │ │ ├── events.js.coffee │ │ │ └── venues.js.coffee │ │ ├── omniauths.js.coffee │ │ ├── pages.js.coffee │ │ ├── registrations.js.coffee │ │ ├── session_proposals.js.coffee │ │ ├── session_requests.js.coffee │ │ ├── stats.js.coffee │ │ ├── user_achievements.js.coffee │ │ └── venues.js.coffee │ └── stylesheets │ │ ├── active_admin.css.scss │ │ ├── api.css.scss │ │ ├── application.css.erb │ │ ├── chapters.css.scss │ │ ├── event_mailer_tasks.css.scss │ │ ├── event_registrations.css.scss │ │ ├── event_sessions.css.scss │ │ ├── event_types.css.scss │ │ ├── events.css.scss │ │ ├── home.css │ │ ├── integrations │ │ └── slackbot.css.scss │ │ ├── leads │ │ ├── chapters.css.scss │ │ ├── event_registrations.css.scss │ │ ├── event_sessions.css.scss │ │ ├── events.css.scss │ │ └── venues.css.scss │ │ ├── omniauths.css.scss │ │ ├── pages.css.scss │ │ ├── registrations.css.scss │ │ ├── scaffolds.css.scss │ │ ├── session_proposals.css.scss │ │ ├── session_requests.css.scss │ │ ├── stats.css.scss │ │ ├── user_achievements.css.scss │ │ └── venues.css.scss ├── controllers │ ├── api_controller.rb │ ├── application_controller.rb │ ├── chapters_controller.rb │ ├── confirmations_controller.rb │ ├── event_mailer_tasks_controller.rb │ ├── event_registrations_controller.rb │ ├── event_session_comments_controller.rb │ ├── event_sessions_controller.rb │ ├── event_types_controller.rb │ ├── events_controller.rb │ ├── home_controller.rb │ ├── integrations │ │ └── slackbot_controller.rb │ ├── leads │ │ ├── chapters_controller.rb │ │ ├── event_mailer_tasks_controller.rb │ │ ├── event_registrations_controller.rb │ │ ├── event_sessions_controller.rb │ │ ├── events_controller.rb │ │ └── venues_controller.rb │ ├── omniauths_controller.rb │ ├── pages_controller.rb │ ├── passwords_controller.rb │ ├── registrations_controller.rb │ ├── session_proposals_controller.rb │ ├── session_requests_controller.rb │ ├── stats_controller.rb │ ├── user_achievements_controller.rb │ └── venues_controller.rb ├── helpers │ ├── api_helper.rb │ ├── application_helper.rb │ ├── chapters_helper.rb │ ├── event_mailer_tasks_helper.rb │ ├── event_registrations_helper.rb │ ├── event_sessions_helper.rb │ ├── event_types_helper.rb │ ├── events_helper.rb │ ├── home_helper.rb │ ├── integrations │ │ └── slackbot_helper.rb │ ├── leads │ │ ├── chapters_helper.rb │ │ ├── event_registrations_helper.rb │ │ ├── event_sessions_helper.rb │ │ ├── events_helper.rb │ │ └── venues_helper.rb │ ├── omniauths_helper.rb │ ├── pages_helper.rb │ ├── registrations_helper.rb │ ├── session_proposals_helper.rb │ ├── session_requests_helper.rb │ ├── stats_helper.rb │ ├── user_achievements_helper.rb │ └── venues_helper.rb ├── mailers │ ├── .gitkeep │ ├── event_mailer.rb │ ├── ifttt_mailer.rb │ └── misc_mailer.rb ├── models │ ├── .gitkeep │ ├── ability.rb │ ├── admin_user.rb │ ├── chapter.rb │ ├── chapter_lead.rb │ ├── event.rb │ ├── event_announcement_mailer_task.rb │ ├── event_automatic_notification_task.rb │ ├── event_mailer_task.rb │ ├── event_notification.rb │ ├── event_registration.rb │ ├── event_session.rb │ ├── event_session_comment.rb │ ├── event_type.rb │ ├── job.rb │ ├── page.rb │ ├── page_access_permission.rb │ ├── session_proposal.rb │ ├── session_request.rb │ ├── stat.rb │ ├── user.rb │ ├── user_achievement.rb │ ├── user_api_token.rb │ ├── user_auth_profile.rb │ └── venue.rb ├── uploaders │ ├── avatar_uploader.rb │ ├── chapter_image_uploader.rb │ └── image_uploader.rb └── views │ ├── chapters │ ├── _chapter_map_loader.html.erb │ ├── index.html.erb │ └── show.html.erb │ ├── devise │ ├── confirmations │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── mailer │ │ ├── confirmation_instructions.html.erb │ │ ├── reset_password_instructions.html.erb │ │ └── unlock_instructions.html.erb │ ├── passwords │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── registrations │ │ ├── edit.html.erb │ │ └── new.html.erb │ ├── sessions │ │ └── new.html.erb │ ├── shared │ │ └── _links.erb │ └── unlocks │ │ └── new.html.erb │ ├── event_mailer │ ├── _event.text.erb │ ├── admin_on_create_notification_mail.text.erb │ ├── announcement_mail.text.erb │ ├── reminder_mail.text.erb │ ├── rsvp_user_reminder_mail.text.erb │ ├── session_speaker_notification_mail.text.erb │ ├── session_speaker_presentation_update_mail.text.erb │ └── session_speaker_reminder_mail.text.erb │ ├── event_registrations │ ├── _form.html.erb │ ├── index.html.erb │ └── new.html.erb │ ├── event_session_comments │ ├── _edit_comment.html.erb │ └── edit_comment.js.erb │ ├── event_sessions │ ├── _reaction.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── my_sessions.html.erb │ ├── show.html.erb │ └── vote.js.erb │ ├── events │ ├── _basic_event.html.erb │ ├── _event.html.erb │ ├── _list.html.erb │ └── show.html.erb │ ├── home │ ├── about.html.erb │ ├── archives.html.erb │ ├── calendar.html.erb │ ├── forum.html.erb │ ├── index.html.erb │ ├── privacy.html.erb │ ├── public_profile.html.erb │ ├── signup_confirm.html.erb │ └── upcoming.html.erb │ ├── layouts │ ├── _analytics.html.erb │ ├── _announcement.html.erb │ ├── _footer.html.erb │ ├── _header.html.erb │ ├── _notification.html.erb │ ├── _notifications.html.erb │ ├── _postscripts.html.erb │ └── application.html.erb │ ├── leads │ ├── chapters │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ └── index.html.erb │ ├── event_mailer_tasks │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── event_registrations │ │ └── index.html.erb │ ├── event_sessions │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── events │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ └── venues │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── misc_mailer │ ├── session_proposal_mail.text.erb │ └── session_request_mail.text.erb │ ├── pages │ ├── _form.html.erb │ ├── edit.html.erb │ └── show.html.erb │ ├── registrations │ ├── edit.html.erb │ └── new.html.erb │ ├── session_proposals │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── session_requests │ ├── _form.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── shared │ ├── _datatable.html.erb │ ├── _pp_about_me.html.erb │ ├── _pp_avatar_social.html.erb │ └── _pp_brief.html.erb │ ├── stats │ ├── _data_view.html.erb │ ├── _graph_view.html.erb │ └── show.html.erb │ └── venues │ ├── _venue.html.erb │ └── show.html.erb ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── database.yml ├── database.yml.docker ├── database.yml.sample ├── deploy.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── google_api.rb ├── initializers │ ├── active_admin.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── carrierwave.rb │ ├── devise.rb │ ├── exception_notification.rb │ ├── formtastic.rb │ ├── geocoder.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── recaptcha.rb │ ├── resque.rb │ ├── secret_token.rb │ ├── secure_headers.rb │ ├── sentry.rb │ ├── session_store.rb │ ├── swagger.rb │ └── wrap_parameters.rb ├── locales │ ├── devise.en.yml │ └── en.yml ├── mailgun.rb ├── mailgun.yml ├── misc_config.rb ├── null_oauth.rb ├── recaptcha.rb ├── redis.yml ├── resque_schedule.yml ├── routes.rb ├── secrets.yml ├── slack.rb ├── storage.rb ├── twitter.rb └── unicorn.rb ├── data └── README ├── db ├── migrate │ ├── 20131217054954_devise_create_users.rb │ ├── 20140227075854_devise_create_admin_users.rb │ ├── 20140227075900_create_active_admin_comments.rb │ ├── 20140227113937_create_chapters.rb │ ├── 20140227114503_create_chapter_leads.rb │ ├── 20140227120754_create_venues.rb │ ├── 20140227150521_add_sessions_table.rb │ ├── 20140306085836_create_event_types.rb │ ├── 20140306090420_create_events.rb │ ├── 20140309163513_create_event_sessions.rb │ ├── 20140309164407_acts_as_taggable_on_migration.rb │ ├── 20140310084019_create_event_registrations.rb │ ├── 20140310111922_edit_user.rb │ ├── 20140310141947_create_user_achievements.rb │ ├── 20140311043439_edit_event_registration.rb │ ├── 20140311045514_edit_event.rb │ ├── 20140311103325_create_jobs.rb │ ├── 20140311112433_create_event_mailer_tasks.rb │ ├── 20140313084713_add_slug.rb │ ├── 20140415145849_create_event_announcement_mailer_tasks.rb │ ├── 20140419121644_edit_event_announcement.rb │ ├── 20140427095055_edit_event_for_notification.rb │ ├── 20140428115802_create_event_automatic_notification_tasks.rb │ ├── 20140703053657_extend_user_about_me.rb │ ├── 20140706135559_add_state_in_event_registration.rb │ ├── 20140706141219_add_required_state_for_event_user_mailer.rb │ ├── 20140711140944_event_add_calendar_event_id.rb │ ├── 20140712054724_event_add_notification_state.rb │ ├── 20141017063859_edit_user_registrations.rb │ ├── 20141220092224_event_session_add_presentation_url.rb │ ├── 20150213124013_ev_session_add_placeholder.rb │ ├── 20150213140346_create_session_requests.rb │ ├── 20150214052140_create_session_proposals.rb │ ├── 20150225074432_chapter_add_chapter_email.rb │ ├── 20150514101659_change_chapters.rb │ ├── 20151224214201_add_chapter_social.rb │ ├── 20160104052642_create_stats.rb │ ├── 20160107193601_max_registration.rb │ ├── 20160124230316_video_urls.rb │ ├── 20170325074151_create_user_api_tokens.rb │ ├── 20170812061440_create_pages.rb │ ├── 20170812072542_create_page_access_permissions.rb │ ├── 20181008165133_add_index_chapter_leads.rb │ ├── 20181227141446_create_user_auth_profiles.rb │ ├── 20190406061050_add_missing_unique_indices.acts_as_taggable_on_engine.rb │ ├── 20190406061051_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb │ ├── 20190406061052_add_missing_taggable_index.acts_as_taggable_on_engine.rb │ ├── 20190406061053_change_collation_for_tag_names.acts_as_taggable_on_engine.rb │ ├── 20190406061054_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb │ ├── 20190406062427_install_audited.rb │ ├── 20200511153248_add_fields_to_api_token.rb │ ├── 20200616165558_remove_pii_from_event_registration.rb │ ├── 20200706164515_acts_as_votable_migration.rb │ ├── 20200711061102_create_event_session_comments.rb │ └── 20201031151646_add_og_image_to_events.rb ├── schema.rb └── seeds.rb ├── doc ├── README_FOR_APP ├── README_for_sysadmin.md ├── create_a_developer_box_for_swachalit.md ├── dev │ └── api_authentication.md ├── developer-guide-docker-compose.md ├── exposing-api-services.md ├── features_required_on_the_null-automation-portal.md ├── md_pages.md ├── mermaid │ └── erd.mmd ├── prod-docker-migration.md ├── production-ops.md ├── testing.md └── vagrant.md ├── docker-compose-app.yml ├── docker-compose-full-stack.yml ├── docker-compose.yml ├── kubernetes ├── .gitignore ├── README.md ├── kustomization.yml └── manifests │ ├── ingress.yml │ ├── mysql_app.yml │ ├── mysql_svc.yml │ ├── namespace.yml │ ├── redis_app.yml │ ├── redis_svc.yml │ ├── swachalit_app.yml │ └── swachalit_svc.yml ├── lib ├── api.rb ├── api │ ├── authentications.rb │ ├── chapters.rb │ ├── entities │ │ ├── chapter_entity.rb │ │ ├── event_entity.rb │ │ ├── event_registration_entity.rb │ │ ├── event_session_entity.rb │ │ └── user_entity.rb │ ├── event_registrations.rb │ ├── event_sessions.rb │ ├── events.rb │ ├── helper.rb │ ├── swachalit.rb │ └── users.rb ├── assets │ └── .gitkeep ├── google.rb ├── google │ ├── calendar.rb │ └── service_client.rb ├── integrations │ └── twitter.rb ├── oauth │ ├── nullwp_strategy.rb │ └── wordpress.rb ├── patches.rb ├── patches │ ├── action_view_ej_patch.rb │ └── state_machine_patch.rb ├── scheduler │ └── resque_helper.rb ├── tasks │ ├── .gitkeep │ ├── resque.rake │ └── resque_scheduler.rake ├── templates │ └── erb │ │ └── scaffold │ │ └── _form.html.erb ├── workers.rb └── workers │ └── background_job_worker.rb ├── log └── .gitkeep ├── public ├── 404.html ├── 422.html ├── 500.html ├── admin │ ├── README.txt │ └── resque │ │ ├── favicon.ico │ │ ├── idle.png │ │ ├── jquery-1.3.2.min.js │ │ ├── jquery.relatize_date.js │ │ ├── poll.png │ │ ├── ranger.js │ │ ├── reset.css │ │ ├── style.css │ │ └── working.png ├── favicon.ico ├── favicon.png ├── robots.txt └── static │ ├── css │ └── jquery.oembed.css │ ├── images │ ├── bg1.jpg │ ├── bg2.png │ └── mb.gif │ └── javascripts │ └── table2CSV.js ├── script ├── anonymize_database.rb ├── app.god ├── dev_seed.rb ├── import_event_registration_users.rb ├── rails ├── run_app.sh ├── run_build.sh ├── run_docker_app.sh ├── run_production.sh ├── run_scheduler.sh └── run_workers.sh ├── sys ├── god.rb └── nginx │ └── null_automation.conf ├── test ├── fixtures │ ├── .gitkeep │ ├── 1.html │ ├── 1.jpg │ ├── admin_users.yml │ ├── chapter_leads.yml │ ├── chapters.yml │ ├── event_announcement_mailer_tasks.yml │ ├── event_automatic_notification_tasks.yml │ ├── event_mailer_tasks.yml │ ├── event_registrations.yml │ ├── event_sessions.yml │ ├── event_types.yml │ ├── events.yml │ ├── jobs.yml │ ├── page_access_permissions.yml │ ├── pages.yml │ ├── session_proposals.yml │ ├── session_requests.yml │ ├── user_achievements.yml │ ├── user_api_tokens.yml │ ├── user_auth_profiles.yml │ ├── users.yml │ └── venues.yml ├── functional │ ├── .gitkeep │ ├── api_controller_test.rb │ ├── event_mailer_test.rb │ ├── ifttt_mailer_test.rb │ ├── integrations │ │ └── slackbot_controller_test.rb │ ├── leads │ │ ├── chapters_controller_test.rb │ │ ├── event_registrations_controller_test.rb │ │ ├── event_sessions_controller_test.rb │ │ ├── events_controller_test.rb │ │ └── venues_controller_test.rb │ ├── misc_mailer_test.rb │ ├── pages_controller_test.rb │ ├── session_proposals_controller_test.rb │ ├── session_requests_controller_test.rb │ └── stats_controller_test.rb ├── integration │ ├── .gitkeep │ ├── api_v2_test.rb │ ├── devise_confirmation_test.rb │ ├── devise_login_test.rb │ ├── devise_registration_test.rb │ ├── event_registration_test.rb │ ├── event_sessions_test.rb │ ├── events_test.rb │ ├── home_test.rb │ ├── leads_event_sessions_test.rb │ ├── leads_event_test.rb │ └── users_password_test.rb ├── test_helper.rb └── unit │ ├── .gitkeep │ ├── admin_user_test.rb │ ├── chapter_lead_test.rb │ ├── chapter_test.rb │ ├── event_announcement_mailer_task_test.rb │ ├── event_automatic_notification_task_test.rb │ ├── event_mailer_task_test.rb │ ├── event_registration_test.rb │ ├── event_session_test.rb │ ├── event_test.rb │ ├── event_type_test.rb │ ├── helpers │ ├── api_helper_test.rb │ ├── chapters_helper_test.rb │ ├── event_mailer_tasks_helper_test.rb │ ├── event_registrations_helper_test.rb │ ├── event_sessions_helper_test.rb │ ├── event_types_helper_test.rb │ ├── events_helper_test.rb │ ├── home_helper_test.rb │ ├── integrations │ │ └── slackbot_helper_test.rb │ ├── leads │ │ ├── chapters_helper_test.rb │ │ ├── event_registrations_helper_test.rb │ │ ├── event_sessions_helper_test.rb │ │ ├── events_helper_test.rb │ │ └── venues_helper_test.rb │ ├── omniauths_helper_test.rb │ ├── pages_helper_test.rb │ ├── registrations_helper_test.rb │ ├── session_proposals_helper_test.rb │ ├── session_requests_helper_test.rb │ ├── stats_helper_test.rb │ ├── user_achievements_helper_test.rb │ └── venues_helper_test.rb │ ├── job_test.rb │ ├── page_access_permission_test.rb │ ├── page_test.rb │ ├── security_test.rb │ ├── session_proposal_test.rb │ ├── session_request_test.rb │ ├── stat_test.rb │ ├── user_achievement_test.rb │ ├── user_api_token_test.rb │ ├── user_auth_profile_test.rb │ ├── user_test.rb │ └── venue_test.rb └── vendor ├── assets ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── javascripts │ ├── .gitkeep │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.autocomplete.js │ ├── select2.js │ └── select2.min.js └── stylesheets │ ├── .gitkeep │ ├── bootstrap-default-theme.css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootswatch-cosmo.css │ ├── bootswatch-cyborg.css │ ├── bootswatch-darkly.css │ ├── bootswatch-flatly.css │ ├── bootswatch-lumen.css │ ├── bootswatch-readable.css │ ├── bootswatch-slate.css │ ├── bootswatch-superhero.css │ ├── bootswatch-united.css │ ├── select2.css │ ├── select2.min.css │ └── yeti.css └── plugins └── .gitkeep /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | data 3 | log/*.log 4 | 5 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/rails.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.github/workflows/rails.yml -------------------------------------------------------------------------------- /.github/workflows/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.github/workflows/secrets.yml -------------------------------------------------------------------------------- /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitleaksignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/.gitleaksignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 2 3 | } 4 | -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/Capfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/Rakefile -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/Vagrantfile -------------------------------------------------------------------------------- /app/admin/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/admin_user.rb -------------------------------------------------------------------------------- /app/admin/chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/chapter.rb -------------------------------------------------------------------------------- /app/admin/chapter_lead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/chapter_lead.rb -------------------------------------------------------------------------------- /app/admin/dashboard.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/dashboard.rb -------------------------------------------------------------------------------- /app/admin/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event.rb -------------------------------------------------------------------------------- /app/admin/event_announcement_mailer_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_announcement_mailer_task.rb -------------------------------------------------------------------------------- /app/admin/event_automatic_notification_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_automatic_notification_task.rb -------------------------------------------------------------------------------- /app/admin/event_mailer_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_mailer_task.rb -------------------------------------------------------------------------------- /app/admin/event_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_registration.rb -------------------------------------------------------------------------------- /app/admin/event_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_session.rb -------------------------------------------------------------------------------- /app/admin/event_session_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_session_comment.rb -------------------------------------------------------------------------------- /app/admin/event_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/event_type.rb -------------------------------------------------------------------------------- /app/admin/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/job.rb -------------------------------------------------------------------------------- /app/admin/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/page.rb -------------------------------------------------------------------------------- /app/admin/page_access_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/page_access_permission.rb -------------------------------------------------------------------------------- /app/admin/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/user.rb -------------------------------------------------------------------------------- /app/admin/venue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/admin/venue.rb -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/default_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/default_image.png -------------------------------------------------------------------------------- /app/assets/images/google/btn_google_signin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/google/btn_google_signin.png -------------------------------------------------------------------------------- /app/assets/images/google/btn_google_signin_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/google/btn_google_signin_sm.png -------------------------------------------------------------------------------- /app/assets/images/hardwear_dates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/hardwear_dates.jpg -------------------------------------------------------------------------------- /app/assets/images/hardwear_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/hardwear_transparent.png -------------------------------------------------------------------------------- /app/assets/images/nu1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/nu1.jpeg -------------------------------------------------------------------------------- /app/assets/images/nu_ig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/nu_ig1.png -------------------------------------------------------------------------------- /app/assets/images/null-blog-banner_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/null-blog-banner_white.png -------------------------------------------------------------------------------- /app/assets/images/null-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/null-logo.jpg -------------------------------------------------------------------------------- /app/assets/images/null_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/null_logo.png -------------------------------------------------------------------------------- /app/assets/images/null_logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/null_logo1.png -------------------------------------------------------------------------------- /app/assets/images/nullcon_transparent_logo_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/nullcon_transparent_logo_0.jpg -------------------------------------------------------------------------------- /app/assets/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/rails.png -------------------------------------------------------------------------------- /app/assets/images/sm_icons/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/sm_icons/facebook.png -------------------------------------------------------------------------------- /app/assets/images/sm_icons/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/sm_icons/group.png -------------------------------------------------------------------------------- /app/assets/images/sm_icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/images/sm_icons/twitter.png -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/active_admin.js -------------------------------------------------------------------------------- /app/assets/javascripts/api.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/api.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/javascripts/chapters.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/chapters.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/event_mailer_tasks.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/event_mailer_tasks.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/event_registrations.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/event_registrations.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/event_sessions.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/event_sessions.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/event_types.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/event_types.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/events.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/events.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/home.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/home.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/integrations/slackbot.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/integrations/slackbot.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/leads/chapters.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/leads/chapters.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/leads/event_registrations.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/leads/event_registrations.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/leads/event_sessions.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/leads/event_sessions.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/leads/events.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/leads/events.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/leads/venues.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/leads/venues.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/omniauths.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/omniauths.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/pages.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/pages.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/registrations.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/registrations.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/session_proposals.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/session_proposals.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/session_requests.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/session_requests.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/stats.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/stats.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/user_achievements.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/user_achievements.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/venues.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/javascripts/venues.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/active_admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/api.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/api.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/application.css.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/chapters.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/chapters.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/event_mailer_tasks.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/event_mailer_tasks.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/event_registrations.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/event_registrations.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/event_sessions.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/event_sessions.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/event_types.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/event_types.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/events.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/events.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/home.css -------------------------------------------------------------------------------- /app/assets/stylesheets/integrations/slackbot.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/integrations/slackbot.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/leads/chapters.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/leads/chapters.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/leads/event_registrations.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/leads/event_registrations.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/leads/event_sessions.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/leads/event_sessions.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/leads/events.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/leads/events.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/leads/venues.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/leads/venues.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/omniauths.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/omniauths.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/pages.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/pages.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/registrations.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/registrations.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/scaffolds.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/scaffolds.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/session_proposals.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/session_proposals.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/session_requests.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/session_requests.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/stats.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/stats.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/user_achievements.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/user_achievements.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/venues.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/assets/stylesheets/venues.css.scss -------------------------------------------------------------------------------- /app/controllers/api_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/api_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/chapters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/chapters_controller.rb -------------------------------------------------------------------------------- /app/controllers/confirmations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/confirmations_controller.rb -------------------------------------------------------------------------------- /app/controllers/event_mailer_tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/event_mailer_tasks_controller.rb -------------------------------------------------------------------------------- /app/controllers/event_registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/event_registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/event_session_comments_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/event_session_comments_controller.rb -------------------------------------------------------------------------------- /app/controllers/event_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/event_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/event_types_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/event_types_controller.rb -------------------------------------------------------------------------------- /app/controllers/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/integrations/slackbot_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/integrations/slackbot_controller.rb -------------------------------------------------------------------------------- /app/controllers/leads/chapters_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/leads/chapters_controller.rb -------------------------------------------------------------------------------- /app/controllers/leads/event_mailer_tasks_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/leads/event_mailer_tasks_controller.rb -------------------------------------------------------------------------------- /app/controllers/leads/event_registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/leads/event_registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/leads/event_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/leads/event_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/leads/events_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/leads/events_controller.rb -------------------------------------------------------------------------------- /app/controllers/leads/venues_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/leads/venues_controller.rb -------------------------------------------------------------------------------- /app/controllers/omniauths_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/omniauths_controller.rb -------------------------------------------------------------------------------- /app/controllers/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/passwords_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/passwords_controller.rb -------------------------------------------------------------------------------- /app/controllers/registrations_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/registrations_controller.rb -------------------------------------------------------------------------------- /app/controllers/session_proposals_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/session_proposals_controller.rb -------------------------------------------------------------------------------- /app/controllers/session_requests_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/session_requests_controller.rb -------------------------------------------------------------------------------- /app/controllers/stats_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/stats_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_achievements_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/user_achievements_controller.rb -------------------------------------------------------------------------------- /app/controllers/venues_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/controllers/venues_controller.rb -------------------------------------------------------------------------------- /app/helpers/api_helper.rb: -------------------------------------------------------------------------------- 1 | module ApiHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/chapters_helper.rb: -------------------------------------------------------------------------------- 1 | module ChaptersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/event_mailer_tasks_helper.rb: -------------------------------------------------------------------------------- 1 | module EventMailerTasksHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/event_registrations_helper.rb: -------------------------------------------------------------------------------- 1 | module EventRegistrationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/event_sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module EventSessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/event_types_helper.rb: -------------------------------------------------------------------------------- 1 | module EventTypesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/events_helper.rb: -------------------------------------------------------------------------------- 1 | module EventsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/home_helper.rb: -------------------------------------------------------------------------------- 1 | module HomeHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/integrations/slackbot_helper.rb: -------------------------------------------------------------------------------- 1 | module Integrations::SlackbotHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/leads/chapters_helper.rb: -------------------------------------------------------------------------------- 1 | module Leads::ChaptersHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/leads/event_registrations_helper.rb: -------------------------------------------------------------------------------- 1 | module Leads::EventRegistrationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/leads/event_sessions_helper.rb: -------------------------------------------------------------------------------- 1 | module Leads::EventSessionsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/leads/events_helper.rb: -------------------------------------------------------------------------------- 1 | module Leads::EventsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/leads/venues_helper.rb: -------------------------------------------------------------------------------- 1 | module Leads::VenuesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/omniauths_helper.rb: -------------------------------------------------------------------------------- 1 | module OmniauthsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/pages_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/helpers/pages_helper.rb -------------------------------------------------------------------------------- /app/helpers/registrations_helper.rb: -------------------------------------------------------------------------------- 1 | module RegistrationsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/session_proposals_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionProposalsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/session_requests_helper.rb: -------------------------------------------------------------------------------- 1 | module SessionRequestsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/stats_helper.rb: -------------------------------------------------------------------------------- 1 | module StatsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/user_achievements_helper.rb: -------------------------------------------------------------------------------- 1 | module UserAchievementsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/venues_helper.rb: -------------------------------------------------------------------------------- 1 | module VenuesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/mailers/event_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/mailers/event_mailer.rb -------------------------------------------------------------------------------- /app/mailers/ifttt_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/mailers/ifttt_mailer.rb -------------------------------------------------------------------------------- /app/mailers/misc_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/mailers/misc_mailer.rb -------------------------------------------------------------------------------- /app/models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/ability.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/ability.rb -------------------------------------------------------------------------------- /app/models/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/admin_user.rb -------------------------------------------------------------------------------- /app/models/chapter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/chapter.rb -------------------------------------------------------------------------------- /app/models/chapter_lead.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/chapter_lead.rb -------------------------------------------------------------------------------- /app/models/event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event.rb -------------------------------------------------------------------------------- /app/models/event_announcement_mailer_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_announcement_mailer_task.rb -------------------------------------------------------------------------------- /app/models/event_automatic_notification_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_automatic_notification_task.rb -------------------------------------------------------------------------------- /app/models/event_mailer_task.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_mailer_task.rb -------------------------------------------------------------------------------- /app/models/event_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_notification.rb -------------------------------------------------------------------------------- /app/models/event_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_registration.rb -------------------------------------------------------------------------------- /app/models/event_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_session.rb -------------------------------------------------------------------------------- /app/models/event_session_comment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_session_comment.rb -------------------------------------------------------------------------------- /app/models/event_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/event_type.rb -------------------------------------------------------------------------------- /app/models/job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/job.rb -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/page_access_permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/page_access_permission.rb -------------------------------------------------------------------------------- /app/models/session_proposal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/session_proposal.rb -------------------------------------------------------------------------------- /app/models/session_request.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/session_request.rb -------------------------------------------------------------------------------- /app/models/stat.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/stat.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_achievement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/user_achievement.rb -------------------------------------------------------------------------------- /app/models/user_api_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/user_api_token.rb -------------------------------------------------------------------------------- /app/models/user_auth_profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/user_auth_profile.rb -------------------------------------------------------------------------------- /app/models/venue.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/models/venue.rb -------------------------------------------------------------------------------- /app/uploaders/avatar_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/uploaders/avatar_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/chapter_image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/uploaders/chapter_image_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/image_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/uploaders/image_uploader.rb -------------------------------------------------------------------------------- /app/views/chapters/_chapter_map_loader.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/chapters/_chapter_map_loader.html.erb -------------------------------------------------------------------------------- /app/views/chapters/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/chapters/index.html.erb -------------------------------------------------------------------------------- /app/views/chapters/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/chapters/show.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/confirmations/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/confirmations/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/confirmations/show.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/confirmation_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/mailer/confirmation_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/reset_password_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/mailer/reset_password_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/mailer/unlock_instructions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/mailer/unlock_instructions.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/passwords/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/passwords/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/devise/registrations/new.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/devise/sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/devise/shared/_links.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/shared/_links.erb -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/devise/unlocks/new.html.erb -------------------------------------------------------------------------------- /app/views/event_mailer/_event.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/_event.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/admin_on_create_notification_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/admin_on_create_notification_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/announcement_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/announcement_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/reminder_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/reminder_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/rsvp_user_reminder_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/rsvp_user_reminder_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/session_speaker_notification_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/session_speaker_notification_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/session_speaker_presentation_update_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/session_speaker_presentation_update_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_mailer/session_speaker_reminder_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_mailer/session_speaker_reminder_mail.text.erb -------------------------------------------------------------------------------- /app/views/event_registrations/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_registrations/_form.html.erb -------------------------------------------------------------------------------- /app/views/event_registrations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_registrations/index.html.erb -------------------------------------------------------------------------------- /app/views/event_registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/event_session_comments/_edit_comment.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_session_comments/_edit_comment.html.erb -------------------------------------------------------------------------------- /app/views/event_session_comments/edit_comment.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_session_comments/edit_comment.js.erb -------------------------------------------------------------------------------- /app/views/event_sessions/_reaction.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_sessions/_reaction.html.erb -------------------------------------------------------------------------------- /app/views/event_sessions/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_sessions/edit.html.erb -------------------------------------------------------------------------------- /app/views/event_sessions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_sessions/index.html.erb -------------------------------------------------------------------------------- /app/views/event_sessions/my_sessions.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_sessions/my_sessions.html.erb -------------------------------------------------------------------------------- /app/views/event_sessions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_sessions/show.html.erb -------------------------------------------------------------------------------- /app/views/event_sessions/vote.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/event_sessions/vote.js.erb -------------------------------------------------------------------------------- /app/views/events/_basic_event.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/events/_basic_event.html.erb -------------------------------------------------------------------------------- /app/views/events/_event.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/events/_event.html.erb -------------------------------------------------------------------------------- /app/views/events/_list.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/events/_list.html.erb -------------------------------------------------------------------------------- /app/views/events/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/events/show.html.erb -------------------------------------------------------------------------------- /app/views/home/about.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/about.html.erb -------------------------------------------------------------------------------- /app/views/home/archives.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/archives.html.erb -------------------------------------------------------------------------------- /app/views/home/calendar.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/calendar.html.erb -------------------------------------------------------------------------------- /app/views/home/forum.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/forum.html.erb -------------------------------------------------------------------------------- /app/views/home/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/index.html.erb -------------------------------------------------------------------------------- /app/views/home/privacy.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/privacy.html.erb -------------------------------------------------------------------------------- /app/views/home/public_profile.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/public_profile.html.erb -------------------------------------------------------------------------------- /app/views/home/signup_confirm.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/signup_confirm.html.erb -------------------------------------------------------------------------------- /app/views/home/upcoming.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/home/upcoming.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_analytics.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_analytics.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_announcement.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_announcement.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_footer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_footer.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_header.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_notification.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_notification.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_notifications.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_notifications.html.erb -------------------------------------------------------------------------------- /app/views/layouts/_postscripts.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/_postscripts.html.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/leads/chapters/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/chapters/_form.html.erb -------------------------------------------------------------------------------- /app/views/leads/chapters/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/chapters/edit.html.erb -------------------------------------------------------------------------------- /app/views/leads/chapters/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/chapters/index.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_mailer_tasks/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_mailer_tasks/_form.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_mailer_tasks/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_mailer_tasks/edit.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_mailer_tasks/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_mailer_tasks/index.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_mailer_tasks/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_mailer_tasks/new.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_mailer_tasks/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_mailer_tasks/show.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_registrations/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_registrations/index.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_sessions/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_sessions/_form.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_sessions/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_sessions/edit.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_sessions/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_sessions/index.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/leads/event_sessions/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/event_sessions/show.html.erb -------------------------------------------------------------------------------- /app/views/leads/events/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/events/_form.html.erb -------------------------------------------------------------------------------- /app/views/leads/events/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/events/edit.html.erb -------------------------------------------------------------------------------- /app/views/leads/events/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/events/index.html.erb -------------------------------------------------------------------------------- /app/views/leads/events/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/events/new.html.erb -------------------------------------------------------------------------------- /app/views/leads/events/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/events/show.html.erb -------------------------------------------------------------------------------- /app/views/leads/venues/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/venues/_form.html.erb -------------------------------------------------------------------------------- /app/views/leads/venues/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/venues/edit.html.erb -------------------------------------------------------------------------------- /app/views/leads/venues/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/venues/index.html.erb -------------------------------------------------------------------------------- /app/views/leads/venues/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/venues/new.html.erb -------------------------------------------------------------------------------- /app/views/leads/venues/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/leads/venues/show.html.erb -------------------------------------------------------------------------------- /app/views/misc_mailer/session_proposal_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/misc_mailer/session_proposal_mail.text.erb -------------------------------------------------------------------------------- /app/views/misc_mailer/session_request_mail.text.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/misc_mailer/session_request_mail.text.erb -------------------------------------------------------------------------------- /app/views/pages/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/pages/_form.html.erb -------------------------------------------------------------------------------- /app/views/pages/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/pages/edit.html.erb -------------------------------------------------------------------------------- /app/views/pages/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/pages/show.html.erb -------------------------------------------------------------------------------- /app/views/registrations/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/registrations/edit.html.erb -------------------------------------------------------------------------------- /app/views/registrations/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/registrations/new.html.erb -------------------------------------------------------------------------------- /app/views/session_proposals/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_proposals/_form.html.erb -------------------------------------------------------------------------------- /app/views/session_proposals/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_proposals/edit.html.erb -------------------------------------------------------------------------------- /app/views/session_proposals/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_proposals/index.html.erb -------------------------------------------------------------------------------- /app/views/session_proposals/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_proposals/new.html.erb -------------------------------------------------------------------------------- /app/views/session_proposals/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_proposals/show.html.erb -------------------------------------------------------------------------------- /app/views/session_requests/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_requests/_form.html.erb -------------------------------------------------------------------------------- /app/views/session_requests/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_requests/new.html.erb -------------------------------------------------------------------------------- /app/views/session_requests/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/session_requests/show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_datatable.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/shared/_datatable.html.erb -------------------------------------------------------------------------------- /app/views/shared/_pp_about_me.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/shared/_pp_avatar_social.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/shared/_pp_avatar_social.html.erb -------------------------------------------------------------------------------- /app/views/shared/_pp_brief.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/shared/_pp_brief.html.erb -------------------------------------------------------------------------------- /app/views/stats/_data_view.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/stats/_data_view.html.erb -------------------------------------------------------------------------------- /app/views/stats/_graph_view.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/stats/_graph_view.html.erb -------------------------------------------------------------------------------- /app/views/stats/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/stats/show.html.erb -------------------------------------------------------------------------------- /app/views/venues/_venue.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/app/views/venues/_venue.html.erb -------------------------------------------------------------------------------- /app/views/venues/show.html.erb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/database.yml.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/database.yml.docker -------------------------------------------------------------------------------- /config/database.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/database.yml.sample -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/google_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/google_api.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/carrierwave.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/carrierwave.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/exception_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/exception_notification.rb -------------------------------------------------------------------------------- /config/initializers/formtastic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/formtastic.rb -------------------------------------------------------------------------------- /config/initializers/geocoder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/geocoder.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/recaptcha.rb -------------------------------------------------------------------------------- /config/initializers/resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/resque.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/secure_headers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/secure_headers.rb -------------------------------------------------------------------------------- /config/initializers/sentry.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/sentry.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/swagger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/swagger.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/mailgun.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/mailgun.rb -------------------------------------------------------------------------------- /config/mailgun.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/misc_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/misc_config.rb -------------------------------------------------------------------------------- /config/null_oauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/null_oauth.rb -------------------------------------------------------------------------------- /config/recaptcha.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/recaptcha.rb -------------------------------------------------------------------------------- /config/redis.yml: -------------------------------------------------------------------------------- 1 | --- 2 | host: redis 3 | port: 6379 4 | namespace: 'swachalit' 5 | -------------------------------------------------------------------------------- /config/resque_schedule.yml: -------------------------------------------------------------------------------- 1 | --- {} 2 | -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/slack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/slack.rb -------------------------------------------------------------------------------- /config/storage.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/storage.rb -------------------------------------------------------------------------------- /config/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/twitter.rb -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/migrate/20131217054954_devise_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20131217054954_devise_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20140227075854_devise_create_admin_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140227075854_devise_create_admin_users.rb -------------------------------------------------------------------------------- /db/migrate/20140227075900_create_active_admin_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140227075900_create_active_admin_comments.rb -------------------------------------------------------------------------------- /db/migrate/20140227113937_create_chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140227113937_create_chapters.rb -------------------------------------------------------------------------------- /db/migrate/20140227114503_create_chapter_leads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140227114503_create_chapter_leads.rb -------------------------------------------------------------------------------- /db/migrate/20140227120754_create_venues.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140227120754_create_venues.rb -------------------------------------------------------------------------------- /db/migrate/20140227150521_add_sessions_table.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140227150521_add_sessions_table.rb -------------------------------------------------------------------------------- /db/migrate/20140306085836_create_event_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140306085836_create_event_types.rb -------------------------------------------------------------------------------- /db/migrate/20140306090420_create_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140306090420_create_events.rb -------------------------------------------------------------------------------- /db/migrate/20140309163513_create_event_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140309163513_create_event_sessions.rb -------------------------------------------------------------------------------- /db/migrate/20140309164407_acts_as_taggable_on_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140309164407_acts_as_taggable_on_migration.rb -------------------------------------------------------------------------------- /db/migrate/20140310084019_create_event_registrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140310084019_create_event_registrations.rb -------------------------------------------------------------------------------- /db/migrate/20140310111922_edit_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140310111922_edit_user.rb -------------------------------------------------------------------------------- /db/migrate/20140310141947_create_user_achievements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140310141947_create_user_achievements.rb -------------------------------------------------------------------------------- /db/migrate/20140311043439_edit_event_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140311043439_edit_event_registration.rb -------------------------------------------------------------------------------- /db/migrate/20140311045514_edit_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140311045514_edit_event.rb -------------------------------------------------------------------------------- /db/migrate/20140311103325_create_jobs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140311103325_create_jobs.rb -------------------------------------------------------------------------------- /db/migrate/20140311112433_create_event_mailer_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140311112433_create_event_mailer_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20140313084713_add_slug.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140313084713_add_slug.rb -------------------------------------------------------------------------------- /db/migrate/20140415145849_create_event_announcement_mailer_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140415145849_create_event_announcement_mailer_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20140419121644_edit_event_announcement.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140419121644_edit_event_announcement.rb -------------------------------------------------------------------------------- /db/migrate/20140427095055_edit_event_for_notification.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140427095055_edit_event_for_notification.rb -------------------------------------------------------------------------------- /db/migrate/20140428115802_create_event_automatic_notification_tasks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140428115802_create_event_automatic_notification_tasks.rb -------------------------------------------------------------------------------- /db/migrate/20140703053657_extend_user_about_me.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140703053657_extend_user_about_me.rb -------------------------------------------------------------------------------- /db/migrate/20140706135559_add_state_in_event_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140706135559_add_state_in_event_registration.rb -------------------------------------------------------------------------------- /db/migrate/20140706141219_add_required_state_for_event_user_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140706141219_add_required_state_for_event_user_mailer.rb -------------------------------------------------------------------------------- /db/migrate/20140711140944_event_add_calendar_event_id.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140711140944_event_add_calendar_event_id.rb -------------------------------------------------------------------------------- /db/migrate/20140712054724_event_add_notification_state.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20140712054724_event_add_notification_state.rb -------------------------------------------------------------------------------- /db/migrate/20141017063859_edit_user_registrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20141017063859_edit_user_registrations.rb -------------------------------------------------------------------------------- /db/migrate/20141220092224_event_session_add_presentation_url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20141220092224_event_session_add_presentation_url.rb -------------------------------------------------------------------------------- /db/migrate/20150213124013_ev_session_add_placeholder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20150213124013_ev_session_add_placeholder.rb -------------------------------------------------------------------------------- /db/migrate/20150213140346_create_session_requests.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20150213140346_create_session_requests.rb -------------------------------------------------------------------------------- /db/migrate/20150214052140_create_session_proposals.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20150214052140_create_session_proposals.rb -------------------------------------------------------------------------------- /db/migrate/20150225074432_chapter_add_chapter_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20150225074432_chapter_add_chapter_email.rb -------------------------------------------------------------------------------- /db/migrate/20150514101659_change_chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20150514101659_change_chapters.rb -------------------------------------------------------------------------------- /db/migrate/20151224214201_add_chapter_social.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20151224214201_add_chapter_social.rb -------------------------------------------------------------------------------- /db/migrate/20160104052642_create_stats.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20160104052642_create_stats.rb -------------------------------------------------------------------------------- /db/migrate/20160107193601_max_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20160107193601_max_registration.rb -------------------------------------------------------------------------------- /db/migrate/20160124230316_video_urls.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20160124230316_video_urls.rb -------------------------------------------------------------------------------- /db/migrate/20170325074151_create_user_api_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20170325074151_create_user_api_tokens.rb -------------------------------------------------------------------------------- /db/migrate/20170812061440_create_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20170812061440_create_pages.rb -------------------------------------------------------------------------------- /db/migrate/20170812072542_create_page_access_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20170812072542_create_page_access_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20181008165133_add_index_chapter_leads.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20181008165133_add_index_chapter_leads.rb -------------------------------------------------------------------------------- /db/migrate/20181227141446_create_user_auth_profiles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20181227141446_create_user_auth_profiles.rb -------------------------------------------------------------------------------- /db/migrate/20190406061050_add_missing_unique_indices.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20190406061050_add_missing_unique_indices.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20190406061051_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20190406061051_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20190406061052_add_missing_taggable_index.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20190406061052_add_missing_taggable_index.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20190406061053_change_collation_for_tag_names.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20190406061053_change_collation_for_tag_names.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20190406061054_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20190406061054_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb -------------------------------------------------------------------------------- /db/migrate/20190406062427_install_audited.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20190406062427_install_audited.rb -------------------------------------------------------------------------------- /db/migrate/20200511153248_add_fields_to_api_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20200511153248_add_fields_to_api_token.rb -------------------------------------------------------------------------------- /db/migrate/20200616165558_remove_pii_from_event_registration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20200616165558_remove_pii_from_event_registration.rb -------------------------------------------------------------------------------- /db/migrate/20200706164515_acts_as_votable_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20200706164515_acts_as_votable_migration.rb -------------------------------------------------------------------------------- /db/migrate/20200711061102_create_event_session_comments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20200711061102_create_event_session_comments.rb -------------------------------------------------------------------------------- /db/migrate/20201031151646_add_og_image_to_events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/migrate/20201031151646_add_og_image_to_events.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /doc/README_for_sysadmin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/README_for_sysadmin.md -------------------------------------------------------------------------------- /doc/create_a_developer_box_for_swachalit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/create_a_developer_box_for_swachalit.md -------------------------------------------------------------------------------- /doc/dev/api_authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/dev/api_authentication.md -------------------------------------------------------------------------------- /doc/developer-guide-docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/developer-guide-docker-compose.md -------------------------------------------------------------------------------- /doc/exposing-api-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/exposing-api-services.md -------------------------------------------------------------------------------- /doc/features_required_on_the_null-automation-portal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/features_required_on_the_null-automation-portal.md -------------------------------------------------------------------------------- /doc/md_pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/md_pages.md -------------------------------------------------------------------------------- /doc/mermaid/erd.mmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/mermaid/erd.mmd -------------------------------------------------------------------------------- /doc/prod-docker-migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/prod-docker-migration.md -------------------------------------------------------------------------------- /doc/production-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/production-ops.md -------------------------------------------------------------------------------- /doc/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/testing.md -------------------------------------------------------------------------------- /doc/vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/doc/vagrant.md -------------------------------------------------------------------------------- /docker-compose-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/docker-compose-app.yml -------------------------------------------------------------------------------- /docker-compose-full-stack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/docker-compose-full-stack.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /kubernetes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/.gitignore -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/kustomization.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/kustomization.yml -------------------------------------------------------------------------------- /kubernetes/manifests/ingress.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/ingress.yml -------------------------------------------------------------------------------- /kubernetes/manifests/mysql_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/mysql_app.yml -------------------------------------------------------------------------------- /kubernetes/manifests/mysql_svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/mysql_svc.yml -------------------------------------------------------------------------------- /kubernetes/manifests/namespace.yml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: swachalit-staging 5 | -------------------------------------------------------------------------------- /kubernetes/manifests/redis_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/redis_app.yml -------------------------------------------------------------------------------- /kubernetes/manifests/redis_svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/redis_svc.yml -------------------------------------------------------------------------------- /kubernetes/manifests/swachalit_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/swachalit_app.yml -------------------------------------------------------------------------------- /kubernetes/manifests/swachalit_svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/kubernetes/manifests/swachalit_svc.yml -------------------------------------------------------------------------------- /lib/api.rb: -------------------------------------------------------------------------------- 1 | require_relative 'api/swachalit' -------------------------------------------------------------------------------- /lib/api/authentications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/authentications.rb -------------------------------------------------------------------------------- /lib/api/chapters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/chapters.rb -------------------------------------------------------------------------------- /lib/api/entities/chapter_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/entities/chapter_entity.rb -------------------------------------------------------------------------------- /lib/api/entities/event_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/entities/event_entity.rb -------------------------------------------------------------------------------- /lib/api/entities/event_registration_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/entities/event_registration_entity.rb -------------------------------------------------------------------------------- /lib/api/entities/event_session_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/entities/event_session_entity.rb -------------------------------------------------------------------------------- /lib/api/entities/user_entity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/entities/user_entity.rb -------------------------------------------------------------------------------- /lib/api/event_registrations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/event_registrations.rb -------------------------------------------------------------------------------- /lib/api/event_sessions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/event_sessions.rb -------------------------------------------------------------------------------- /lib/api/events.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/events.rb -------------------------------------------------------------------------------- /lib/api/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/helper.rb -------------------------------------------------------------------------------- /lib/api/swachalit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/swachalit.rb -------------------------------------------------------------------------------- /lib/api/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/api/users.rb -------------------------------------------------------------------------------- /lib/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/google.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/google.rb -------------------------------------------------------------------------------- /lib/google/calendar.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/google/calendar.rb -------------------------------------------------------------------------------- /lib/google/service_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/google/service_client.rb -------------------------------------------------------------------------------- /lib/integrations/twitter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/integrations/twitter.rb -------------------------------------------------------------------------------- /lib/oauth/nullwp_strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/oauth/nullwp_strategy.rb -------------------------------------------------------------------------------- /lib/oauth/wordpress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/oauth/wordpress.rb -------------------------------------------------------------------------------- /lib/patches.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/patches.rb -------------------------------------------------------------------------------- /lib/patches/action_view_ej_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/patches/action_view_ej_patch.rb -------------------------------------------------------------------------------- /lib/patches/state_machine_patch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/patches/state_machine_patch.rb -------------------------------------------------------------------------------- /lib/scheduler/resque_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/scheduler/resque_helper.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/resque.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/tasks/resque.rake -------------------------------------------------------------------------------- /lib/tasks/resque_scheduler.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/tasks/resque_scheduler.rake -------------------------------------------------------------------------------- /lib/templates/erb/scaffold/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/templates/erb/scaffold/_form.html.erb -------------------------------------------------------------------------------- /lib/workers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/workers.rb -------------------------------------------------------------------------------- /lib/workers/background_job_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/lib/workers/background_job_worker.rb -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/500.html -------------------------------------------------------------------------------- /public/admin/README.txt: -------------------------------------------------------------------------------- 1 | Needed for resque assets in production with pipeline. 2 | 3 | -------------------------------------------------------------------------------- /public/admin/resque/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/favicon.ico -------------------------------------------------------------------------------- /public/admin/resque/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/idle.png -------------------------------------------------------------------------------- /public/admin/resque/jquery-1.3.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/jquery-1.3.2.min.js -------------------------------------------------------------------------------- /public/admin/resque/jquery.relatize_date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/jquery.relatize_date.js -------------------------------------------------------------------------------- /public/admin/resque/poll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/poll.png -------------------------------------------------------------------------------- /public/admin/resque/ranger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/ranger.js -------------------------------------------------------------------------------- /public/admin/resque/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/reset.css -------------------------------------------------------------------------------- /public/admin/resque/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/style.css -------------------------------------------------------------------------------- /public/admin/resque/working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/admin/resque/working.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/static/css/jquery.oembed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/static/css/jquery.oembed.css -------------------------------------------------------------------------------- /public/static/images/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/static/images/bg1.jpg -------------------------------------------------------------------------------- /public/static/images/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/static/images/bg2.png -------------------------------------------------------------------------------- /public/static/images/mb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/static/images/mb.gif -------------------------------------------------------------------------------- /public/static/javascripts/table2CSV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/public/static/javascripts/table2CSV.js -------------------------------------------------------------------------------- /script/anonymize_database.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/anonymize_database.rb -------------------------------------------------------------------------------- /script/app.god: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/app.god -------------------------------------------------------------------------------- /script/dev_seed.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/dev_seed.rb -------------------------------------------------------------------------------- /script/import_event_registration_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/import_event_registration_users.rb -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/rails -------------------------------------------------------------------------------- /script/run_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/run_app.sh -------------------------------------------------------------------------------- /script/run_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/run_build.sh -------------------------------------------------------------------------------- /script/run_docker_app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/run_docker_app.sh -------------------------------------------------------------------------------- /script/run_production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/run_production.sh -------------------------------------------------------------------------------- /script/run_scheduler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/run_scheduler.sh -------------------------------------------------------------------------------- /script/run_workers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/script/run_workers.sh -------------------------------------------------------------------------------- /sys/god.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/sys/god.rb -------------------------------------------------------------------------------- /sys/nginx/null_automation.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/sys/nginx/null_automation.conf -------------------------------------------------------------------------------- /test/fixtures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/1.html: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /test/fixtures/1.jpg: -------------------------------------------------------------------------------- 1 | A 2 | -------------------------------------------------------------------------------- /test/fixtures/admin_users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/admin_users.yml -------------------------------------------------------------------------------- /test/fixtures/chapter_leads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/chapter_leads.yml -------------------------------------------------------------------------------- /test/fixtures/chapters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/chapters.yml -------------------------------------------------------------------------------- /test/fixtures/event_announcement_mailer_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/event_announcement_mailer_tasks.yml -------------------------------------------------------------------------------- /test/fixtures/event_automatic_notification_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/event_automatic_notification_tasks.yml -------------------------------------------------------------------------------- /test/fixtures/event_mailer_tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/event_mailer_tasks.yml -------------------------------------------------------------------------------- /test/fixtures/event_registrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/event_registrations.yml -------------------------------------------------------------------------------- /test/fixtures/event_sessions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/event_sessions.yml -------------------------------------------------------------------------------- /test/fixtures/event_types.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/event_types.yml -------------------------------------------------------------------------------- /test/fixtures/events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/events.yml -------------------------------------------------------------------------------- /test/fixtures/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/jobs.yml -------------------------------------------------------------------------------- /test/fixtures/page_access_permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/page_access_permissions.yml -------------------------------------------------------------------------------- /test/fixtures/pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/pages.yml -------------------------------------------------------------------------------- /test/fixtures/session_proposals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/session_proposals.yml -------------------------------------------------------------------------------- /test/fixtures/session_requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/session_requests.yml -------------------------------------------------------------------------------- /test/fixtures/user_achievements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/user_achievements.yml -------------------------------------------------------------------------------- /test/fixtures/user_api_tokens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/user_api_tokens.yml -------------------------------------------------------------------------------- /test/fixtures/user_auth_profiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/user_auth_profiles.yml -------------------------------------------------------------------------------- /test/fixtures/users.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/users.yml -------------------------------------------------------------------------------- /test/fixtures/venues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/fixtures/venues.yml -------------------------------------------------------------------------------- /test/functional/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/functional/api_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/api_controller_test.rb -------------------------------------------------------------------------------- /test/functional/event_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/event_mailer_test.rb -------------------------------------------------------------------------------- /test/functional/ifttt_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/ifttt_mailer_test.rb -------------------------------------------------------------------------------- /test/functional/integrations/slackbot_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/integrations/slackbot_controller_test.rb -------------------------------------------------------------------------------- /test/functional/leads/chapters_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/leads/chapters_controller_test.rb -------------------------------------------------------------------------------- /test/functional/leads/event_registrations_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/leads/event_registrations_controller_test.rb -------------------------------------------------------------------------------- /test/functional/leads/event_sessions_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/leads/event_sessions_controller_test.rb -------------------------------------------------------------------------------- /test/functional/leads/events_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/leads/events_controller_test.rb -------------------------------------------------------------------------------- /test/functional/leads/venues_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/leads/venues_controller_test.rb -------------------------------------------------------------------------------- /test/functional/misc_mailer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/misc_mailer_test.rb -------------------------------------------------------------------------------- /test/functional/pages_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/pages_controller_test.rb -------------------------------------------------------------------------------- /test/functional/session_proposals_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/session_proposals_controller_test.rb -------------------------------------------------------------------------------- /test/functional/session_requests_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/session_requests_controller_test.rb -------------------------------------------------------------------------------- /test/functional/stats_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/functional/stats_controller_test.rb -------------------------------------------------------------------------------- /test/integration/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/api_v2_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/api_v2_test.rb -------------------------------------------------------------------------------- /test/integration/devise_confirmation_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/devise_confirmation_test.rb -------------------------------------------------------------------------------- /test/integration/devise_login_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/devise_login_test.rb -------------------------------------------------------------------------------- /test/integration/devise_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/devise_registration_test.rb -------------------------------------------------------------------------------- /test/integration/event_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/event_registration_test.rb -------------------------------------------------------------------------------- /test/integration/event_sessions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/event_sessions_test.rb -------------------------------------------------------------------------------- /test/integration/events_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/events_test.rb -------------------------------------------------------------------------------- /test/integration/home_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/home_test.rb -------------------------------------------------------------------------------- /test/integration/leads_event_sessions_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/leads_event_sessions_test.rb -------------------------------------------------------------------------------- /test/integration/leads_event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/leads_event_test.rb -------------------------------------------------------------------------------- /test/integration/users_password_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/integration/users_password_test.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/admin_user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/admin_user_test.rb -------------------------------------------------------------------------------- /test/unit/chapter_lead_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/chapter_lead_test.rb -------------------------------------------------------------------------------- /test/unit/chapter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/chapter_test.rb -------------------------------------------------------------------------------- /test/unit/event_announcement_mailer_task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_announcement_mailer_task_test.rb -------------------------------------------------------------------------------- /test/unit/event_automatic_notification_task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_automatic_notification_task_test.rb -------------------------------------------------------------------------------- /test/unit/event_mailer_task_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_mailer_task_test.rb -------------------------------------------------------------------------------- /test/unit/event_registration_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_registration_test.rb -------------------------------------------------------------------------------- /test/unit/event_session_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_session_test.rb -------------------------------------------------------------------------------- /test/unit/event_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_test.rb -------------------------------------------------------------------------------- /test/unit/event_type_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/event_type_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/api_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/api_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/chapters_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/chapters_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/event_mailer_tasks_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/event_mailer_tasks_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/event_registrations_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/event_registrations_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/event_sessions_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/event_sessions_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/event_types_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/event_types_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/events_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/events_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/home_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/home_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/integrations/slackbot_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/integrations/slackbot_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/leads/chapters_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/leads/chapters_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/leads/event_registrations_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/leads/event_registrations_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/leads/event_sessions_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/leads/event_sessions_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/leads/events_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/leads/events_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/leads/venues_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/leads/venues_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/omniauths_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/omniauths_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/pages_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/pages_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/registrations_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/registrations_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/session_proposals_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/session_proposals_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/session_requests_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/session_requests_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/stats_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/stats_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/user_achievements_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/user_achievements_helper_test.rb -------------------------------------------------------------------------------- /test/unit/helpers/venues_helper_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/helpers/venues_helper_test.rb -------------------------------------------------------------------------------- /test/unit/job_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/job_test.rb -------------------------------------------------------------------------------- /test/unit/page_access_permission_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/page_access_permission_test.rb -------------------------------------------------------------------------------- /test/unit/page_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/page_test.rb -------------------------------------------------------------------------------- /test/unit/security_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/security_test.rb -------------------------------------------------------------------------------- /test/unit/session_proposal_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/session_proposal_test.rb -------------------------------------------------------------------------------- /test/unit/session_request_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/session_request_test.rb -------------------------------------------------------------------------------- /test/unit/stat_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/stat_test.rb -------------------------------------------------------------------------------- /test/unit/user_achievement_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/user_achievement_test.rb -------------------------------------------------------------------------------- /test/unit/user_api_token_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/user_api_token_test.rb -------------------------------------------------------------------------------- /test/unit/user_auth_profile_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/user_auth_profile_test.rb -------------------------------------------------------------------------------- /test/unit/user_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/user_test.rb -------------------------------------------------------------------------------- /test/unit/venue_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/test/unit/venue_test.rb -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/assets/javascripts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/javascripts/bootstrap.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/javascripts/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/javascripts/jquery.autocomplete.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/javascripts/select2.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/javascripts/select2.min.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-default-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap-default-theme.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap-theme.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap-theme.css.map -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap-theme.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap.css.map -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-cosmo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-cosmo.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-cyborg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-cyborg.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-darkly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-darkly.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-flatly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-flatly.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-lumen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-lumen.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-readable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-readable.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-slate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-slate.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-superhero.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-superhero.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/bootswatch-united.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/bootswatch-united.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/select2.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/select2.min.css -------------------------------------------------------------------------------- /vendor/assets/stylesheets/yeti.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/null-open-security-community/swachalit/HEAD/vendor/assets/stylesheets/yeti.css -------------------------------------------------------------------------------- /vendor/plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------