10 lines
180 B
Plaintext
10 lines
180 B
Plaintext
|
import DiscourseURL from "discourse/lib/url";
|
||
|
|
||
|
export default Ember.Controller.extend({
|
||
|
actions: {
|
||
|
goBack() {
|
||
|
return DiscourseURL.redirectTo("/patrons");
|
||
|
}
|
||
|
}
|
||
|
});
|