0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-18 23:01:11 +02:00

fix spelling mistake

Dieser Commit ist enthalten in:
merefield 2023-09-24 10:02:52 +01:00
Ursprung e43fbd0b50
Commit 7f245d6a59

Datei anzeigen

@ -3,10 +3,10 @@ class CustomWizard::SubscriptionController < ::Admin::AdminController
before_action :ensure_admin
def index
subcription = CustomWizard::Subscription.new
subscription = CustomWizard::Subscription.new
render_json_dump(
subscribed: subcription.subscribed?,
subscription_type: subcription.type,
subscribed: subscription.subscribed?,
subscription_type: subscription.type,
subscription_attributes: CustomWizard::Subscription.attributes,
)
end