Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
fix spelling mistake
Dieser Commit ist enthalten in:
Ursprung
e43fbd0b50
Commit
7f245d6a59
1 geänderte Dateien mit 3 neuen und 3 gelöschten Zeilen
|
@ -3,10 +3,10 @@ class CustomWizard::SubscriptionController < ::Admin::AdminController
|
||||||
before_action :ensure_admin
|
before_action :ensure_admin
|
||||||
|
|
||||||
def index
|
def index
|
||||||
subcription = CustomWizard::Subscription.new
|
subscription = CustomWizard::Subscription.new
|
||||||
render_json_dump(
|
render_json_dump(
|
||||||
subscribed: subcription.subscribed?,
|
subscribed: subscription.subscribed?,
|
||||||
subscription_type: subcription.type,
|
subscription_type: subscription.type,
|
||||||
subscription_attributes: CustomWizard::Subscription.attributes,
|
subscription_attributes: CustomWizard::Subscription.attributes,
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
Laden …
In neuem Issue referenzieren