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:
<?php | |
class GridFieldPersonSalutationDropDown implements GridField_ColumnProvider, GridField_URLHandler { | |
public function augmentColumns($gridField, &$columns) { | |
$columns[] = 'Salutation'; | |
} | |
public function getColumnsHandled($gridField) { | |
return array('Salutation'); | |
} |
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: