mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-02-17 00:45:08 +00:00
Change the route to something meaningful
This commit is contained in:
parent
b4d7ea3696
commit
8b21d44bc9
@ -1,3 +1,3 @@
|
|||||||
export default function() {
|
export default function() {
|
||||||
this.route('dd');
|
this.route('donate');
|
||||||
};
|
};
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
<a href="/dd">
|
<a href="/donate">
|
||||||
{{i18n 'discourse_donations.nav_item'}}
|
{{i18n 'discourse_donations.nav_item'}}
|
||||||
</a>
|
</a>
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
DiscourseDonations::Engine.routes.draw do
|
DiscourseDonations::Engine.routes.draw do
|
||||||
resources :charges, only: [:create]
|
resources :charges, only: [:create]
|
||||||
get 'users/:username/payments' => 'payments#show'
|
get 'users/:username/payments' => 'payments#show'
|
||||||
get 'dd' => 'payments#show'
|
get 'donate' => 'payments#show'
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user