app.get(name)
Returns the value of name app setting, where name is one of strings in the app settings table. For example:
app.get('title');
// => undefined
app.set('title', 'My Site');
app.get('title');
// => "My Site"
app.get(name)
Returns the value of name app setting, where name is one of strings in the app settings table. For example:
app.get('title');
// => undefined
app.set('title', 'My Site');
app.get('title');
// => "My Site"
Please login to continue.