The goal of this GIST is to give a short summary of what is needed to perform authentication from an ember.js application using simple-auth and the SilverStripe RESTful API module
Here's a list of the software that was used:
/** | |
* Process and render search results. | |
* | |
* !! NOTE | |
* _config.php includes: | |
* | |
* FulltextSearchable::enable(); | |
* Object::add_extension('ExtendedPage', "FulltextSearchable('HeadlineText')"); | |
* Object::add_extension('NewsStory', "FulltextSearchable('Name,Content')"); | |
* !! |
<?php | |
class Presentation extends DataObject | |
{ | |
private static $db = array( | |
'Title' => 'Text', | |
'Description' => 'HTMLText' | |
); | |
public function getCMSFields() | |
{ |
<?php | |
/** | |
* | |
* @package MCManager.includes | |
* @author Thierry Francois @colymba | |
* @author Moxiecode | |
* @copyright Copyright © 2004-2007, Moxiecode Systems AB, All rights reserved. | |
*/ | |
class GoogleSpell extends SpellChecker { |
The goal of this GIST is to give a short summary of what is needed to perform authentication from an ember.js application using simple-auth and the SilverStripe RESTful API module
Here's a list of the software that was used: