mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-13 14:39:52 +03:00
ee47dd4dae
no issue - adds new router to the frontend for handling unsubscribe - default template lives in `core/server/frontend/views/unsubscribe.hbs` - `{{error}}` is present and contains the error message when unsubscribe fails - `{{member}}` is present and contains the member email - updated unsubscribe url to match the new format
30 lines
475 B
JavaScript
30 lines
475 B
JavaScript
module.exports = {
|
|
get entry() {
|
|
return require('./entry');
|
|
},
|
|
|
|
get collection() {
|
|
return require('./collection');
|
|
},
|
|
|
|
get rss() {
|
|
return require('./rss');
|
|
},
|
|
|
|
get preview() {
|
|
return require('./preview');
|
|
},
|
|
|
|
get channel() {
|
|
return require('./channel');
|
|
},
|
|
|
|
get static() {
|
|
return require('./static');
|
|
},
|
|
|
|
get unsubscribe() {
|
|
return require('./unsubscribe');
|
|
}
|
|
};
|