* Add ProMembership model * Implement ProMembershipsController#create * Implement basic ProMembershipsController#show * Add ProMembership to ledger * Populate user history after pro subscription is created * Add fields for expiration notifications * Add ProMemberships::ExpirationNotifier to notify users of expiring memberships * Add tasks for recurring jobs to notify users of expiration * Add auto_recharge column to ProMembership * Add ProMemberships::Biller (incomplete) * Fix specs * Add ProMembership to Administrate * Fix spec * Add has_enough_credits? to User and Organization * Add Payments::Customer class * Finish ProMembership::Biller functionality * Fix ProMemberships::Creator check for credits * Disable destroy actions for ProMembershipsController * Correctly authenticate ProMembershipsController actions * Make sure only pro user's history can be indexed * Add ProMembershipsController#update action for auto recharge * Use regular AR to save new credits and add touch to the purchaser * Clarify Pro membership create policy * Display information about an existing pro membership * Add UI to show page * Add system test for Pro membership creation * Implement edit membership * Make sure users with pro memberships can access history and dashboard pro * Fix padding issue * Show a different text for a user that has credits but not enough for Pro * Move Pro Membership functionality inside settings * Update Pro Membership link in email notifications * Bust all relevant caches * Add the Pro checkmark around the website * Use Users::ResaveArticlesJob instead of delay * Add/remove user from pro-members chat channel * Use the appropriate Pro checkmark * Remove unfinished pro elements * Remove checkmark JS
67 lines
1.8 KiB
Ruby
67 lines
1.8 KiB
Ruby
require "administrate/base_dashboard"
|
|
|
|
class ProMembershipDashboard < Administrate::BaseDashboard
|
|
# ATTRIBUTE_TYPES
|
|
# a hash that describes the type of each of the model's fields.
|
|
#
|
|
# Each different type represents an Administrate::Field object,
|
|
# which determines how the attribute is displayed
|
|
# on pages throughout the dashboard.
|
|
ATTRIBUTE_TYPES = {
|
|
user: Field::BelongsTo,
|
|
id: Field::Number,
|
|
status: Field::String,
|
|
expires_at: Field::DateTime,
|
|
expiration_notification_at: Field::DateTime,
|
|
expiration_notifications_count: Field::Number,
|
|
auto_recharge: Field::Boolean,
|
|
created_at: Field::DateTime,
|
|
updated_at: Field::DateTime
|
|
}.freeze
|
|
|
|
# COLLECTION_ATTRIBUTES
|
|
# an array of attributes that will be displayed on the model's index page.
|
|
#
|
|
# By default, it's limited to four items to reduce clutter on index pages.
|
|
# Feel free to add, remove, or rearrange items.
|
|
COLLECTION_ATTRIBUTES = %i[
|
|
user
|
|
id
|
|
status
|
|
expires_at
|
|
auto_recharge
|
|
].freeze
|
|
|
|
# SHOW_PAGE_ATTRIBUTES
|
|
# an array of attributes that will be displayed on the model's show page.
|
|
SHOW_PAGE_ATTRIBUTES = %i[
|
|
user
|
|
id
|
|
status
|
|
expires_at
|
|
expiration_notification_at
|
|
expiration_notifications_count
|
|
auto_recharge
|
|
created_at
|
|
updated_at
|
|
].freeze
|
|
|
|
# FORM_ATTRIBUTES
|
|
# an array of attributes that will be displayed
|
|
# on the model's form (`new` and `edit`) pages.
|
|
FORM_ATTRIBUTES = %i[
|
|
user
|
|
status
|
|
expires_at
|
|
expiration_notification_at
|
|
expiration_notifications_count
|
|
auto_recharge
|
|
].freeze
|
|
|
|
# Overwrite this method to customize how pro memberships are displayed
|
|
# across all pages of the admin dashboard.
|
|
#
|
|
# def display_resource(pro_membership)
|
|
# "ProMembership ##{pro_membership.id}"
|
|
# end
|
|
end
|