Changed Appreciation to Jr High Summer; Fixed sorting of internships such that changes get properly sorted; Added a proper date on news & notices on the home page using the page's update timestamp.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import { AccountsTemplates } from 'meteor/useraccounts:core';
|
||||
|
||||
AccountsTemplates.configure({
|
||||
enablePasswordChange: true, //Allow the user to change their password via the login UI.
|
||||
forbidClientAccountCreation: true, //Turn off client side account creation. The app is expected to have a feature that will do this.
|
||||
showForgotPasswordLink: true,
|
||||
defaultTemplate: 'OverrideAtForm',
|
||||
@@ -11,7 +12,11 @@ AccountsTemplates.configure({
|
||||
// defaultLayout: 'Body',
|
||||
// defaultContentRegion: 'content',
|
||||
// defaultLayoutRegions: {}
|
||||
homeRoutePath: '/Admin/InternshipJobs', //The path where the user is taken after logging in successfully.
|
||||
homeRoutePath: '/Admin/Internships', //The path where the user is taken after logging in successfully. Unfortunately this is also used for the path when logging out, so we must override that function with an onLogoutHook.
|
||||
onLogoutHook: function() {
|
||||
FlowRouter.go("/");
|
||||
},
|
||||
|
||||
texts: {
|
||||
title: {
|
||||
signIn: ""
|
||||
|
||||
Reference in New Issue
Block a user