mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 09:25:43 +01:00
16 lines
352 B
JavaScript
16 lines
352 B
JavaScript
/*
|
|
* To change this template, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
var debug = true;
|
|
|
|
var repositoryTypes = [ ['Mercurial', 'hg'], ['Subversion','svn'], ['Git','git'] ];
|
|
|
|
var repositoryTypeStore = new Ext.data.ArrayStore({
|
|
id: 1,
|
|
fields: [ 'name', 'type' ],
|
|
data: repositoryTypes
|
|
});
|
|
|
|
var restUrl = "api/rest/"; |