]> gitweb.mndrdr.org Git - arelpe.git/commit
Added subscriptions, yo
authorAidan Cornelius-Bell <[email protected]>
Tue, 8 Oct 2024 08:02:49 +0000 (18:32 +1030)
committerAidan Cornelius-Bell <[email protected]>
Tue, 8 Oct 2024 08:02:49 +0000 (18:32 +1030)
commit95921c6b9fe3d72a0e120b10e2168cd89b250804
tree9012f2447bfaf20fa5eafb0c8094d7d76b2825fb
parentb03d6741909812da6b0a70dc55e05aa13204b699
Added subscriptions, yo
60 files changed:
Gemfile
Gemfile.lock
app/assets/images/aidan_about_u.svg [new file with mode: 0644]
app/assets/images/aidan_arrow.svg [new file with mode: 0644]
app/assets/images/aidan_be_premium.svg [new file with mode: 0644]
app/assets/images/aidan_dispatches.svg [new file with mode: 0644]
app/assets/stylesheets/application.css
app/controllers/.DS_Store
app/controllers/mailing_lists_controller.rb [new file with mode: 0644]
app/controllers/pubview_controller.rb
app/controllers/subscriptions_controller.rb [new file with mode: 0644]
app/controllers/users/.DS_Store [copied from app/assets/images/.DS_Store with 100% similarity]
app/controllers/users/confirmations_controller.rb [new file with mode: 0644]
app/controllers/users/registrations_controller.rb
app/helpers/mailing_lists_helper.rb [new file with mode: 0644]
app/helpers/subscriptions_helper.rb [new file with mode: 0644]
app/mailers/.DS_Store [copied from app/assets/images/.DS_Store with 100% similarity]
app/mailers/admin_mailer.rb [new file with mode: 0644]
app/mailers/welcome_mailer.rb [new file with mode: 0644]
app/models/user.rb
app/services/buttondown_service.rb [new file with mode: 0644]
app/views/.DS_Store
app/views/admin_mailer/.DS_Store [copied from app/assets/images/.DS_Store with 100% similarity]
app/views/admin_mailer/new_non_financial_member.html.erb [new file with mode: 0644]
app/views/admin_mailer/new_paid_member.html.erb [new file with mode: 0644]
app/views/devise/base_template.html.erb [deleted file]
app/views/devise/confirmations/new.html.erb
app/views/devise/passwords/new.html.erb
app/views/devise/registrations/edit.html.erb
app/views/devise/registrations/new.html.erb
app/views/devise/sessions/new.html.erb
app/views/layouts/_home_post_links.html.erb [new file with mode: 0644]
app/views/layouts/_navigation_buttons.html.erb [new file with mode: 0644]
app/views/layouts/application.html.erb
app/views/layouts/user_page_template.html.erb [new file with mode: 0644]
app/views/mailing_lists/edit.html.erb [new file with mode: 0644]
app/views/mailing_lists/index.html.erb [new file with mode: 0644]
app/views/mailing_lists/update.html.erb [new file with mode: 0644]
app/views/pubview/index.html.erb
app/views/pubview/join.html.erb
app/views/pubview/post.html.erb
app/views/pubview/show_public.html.erb
app/views/subscriptions/create.html.erb [new file with mode: 0644]
app/views/subscriptions/index.html.erb [new file with mode: 0644]
app/views/subscriptions/new.html.erb [new file with mode: 0644]
app/views/welcome_mailer/welcome_email.html.erb [new file with mode: 0644]
app/views/welcome_mailer/welcome_email.text.erb [new file with mode: 0644]
config/environments/development.rb
config/initializers/stripe.rb [new file with mode: 0644]
config/routes.rb
db/migrate/20241008003544_add_subscription_fields_to_users.rb [new file with mode: 0644]
db/migrate/20241008005649_add_subscription_type_to_users.rb [new file with mode: 0644]
db/migrate/20241008010447_add_support_type_to_users.rb [new file with mode: 0644]
db/schema.rb
test/controllers/mailing_lists_controller_test.rb [new file with mode: 0644]
test/controllers/subscriptions_controller_test.rb [new file with mode: 0644]
test/mailers/admin_mailer_test.rb [new file with mode: 0644]
test/mailers/previews/admin_mailer_preview.rb [new file with mode: 0644]
test/mailers/previews/welcome_mailer_preview.rb [new file with mode: 0644]
test/mailers/welcome_mailer_test.rb [new file with mode: 0644]