mirror of
https://github.com/php/web-doc-editor.git
synced 2026-03-25 17:52:18 +01:00
And finish login page. * master: Disable checkVCSKeyWords(); for now. This take too much time Fix error_type.php to reflect last change (adding a new error type) Add a new error when VCS Keywors & Eol-Style aren't enought for a file Addition of the execution time of each module when updating data Don't use strict operator to check fid. Sometimes, it's a string, sometimes, it's an integer Fix default value for Filepath. This allow to delete a new file from root node Add G+ & Fb-like button into home tab Use Facebook oAuth 2.0 API to connect anonymous user with her facebook account Add new img for google sign in Fix redirect uri for Google API Use Google othau 2.0 API to connect anonymous user with her google account Activate the search functionality from Codemirror. Use CTRL+F to use it Fix witch user have modified a file Fix UI translation for all available language Patch from Maciek Sokolewicz : improve english sentence
13 lines
360 B
JavaScript
13 lines
360 B
JavaScript
Ext.define('phpdoe.store.AuthServices', {
|
|
extend : 'Ext.data.Store',
|
|
model : 'phpdoe.model.AuthService',
|
|
proxy : {
|
|
type : 'ajax',
|
|
url : './do/getAvailableAuthServices',
|
|
reader : {
|
|
type : 'json',
|
|
totalProperty : 'nbItems',
|
|
root : 'Items'
|
|
}
|
|
}
|
|
}) |