Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions codbex-countries/codbex-countries.gen
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"tablePrefix": "CODBEX_",
"brand": "codbex",
"brandUrl": "https://www.codbex.com",
"title": "Country Management Application",
"description": "Managing country data",
"brandUrl": "https://www.codbex.com/",
"title": "Countries Management Module",
"description": "Managing Countries Data",
"projectName": "codbex-countries",
"workspaceName": "workspace",
"filePath": "codbex-countries.model",
"templateId": "template-application-angular-v2/template/template.js",
"templateId": "template-application-angular-java/template/template.js",
"fileName": "codbex-countries",
"genFolderName": "codbex-countries",
"javaRuntime": true,
"javaGenFolderName": "codbex_countries",
"dataSource": "DefaultDB",
"perspectives": {
"Settings": {
Expand Down Expand Up @@ -60,6 +62,7 @@
"widgetDropdownControllerUrl": "",
"dataTypeJava": "int",
"dataTypeTypescript": "number",
"dataTypeJavaClass": "Integer",
"inputRule": ""
},
{
Expand Down Expand Up @@ -87,6 +90,7 @@
"widgetDropdownControllerUrl": "",
"dataTypeJava": "string",
"dataTypeTypescript": "string",
"dataTypeJavaClass": "String",
"minLength": 0,
"maxLength": 20,
"inputRule": ""
Expand Down Expand Up @@ -116,6 +120,7 @@
"widgetDropdownControllerUrl": "",
"dataTypeJava": "string",
"dataTypeTypescript": "string",
"dataTypeJavaClass": "String",
"minLength": 0,
"maxLength": 2,
"inputRule": ""
Expand Down Expand Up @@ -145,6 +150,7 @@
"widgetDropdownControllerUrl": "",
"dataTypeJava": "string",
"dataTypeTypescript": "string",
"dataTypeJavaClass": "String",
"minLength": 0,
"maxLength": 3,
"inputRule": ""
Expand Down Expand Up @@ -174,6 +180,7 @@
"widgetDropdownControllerUrl": "",
"dataTypeJava": "string",
"dataTypeTypescript": "string",
"dataTypeJavaClass": "String",
"minLength": 0,
"maxLength": 3,
"inputRule": ""
Expand Down Expand Up @@ -204,6 +211,7 @@
"tooltip": "Country",
"type": "SETTING",
"dataSource": "DefaultDB",
"javaPerspectiveName": "settings",
"referencedProjections": [],
"primaryKeys": [
"Id"
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntityService'])
.config(['EntityServiceProvider', (EntityServiceProvider) => {
EntityServiceProvider.baseUrl = '/services/ts/codbex-countries/gen/codbex-countries/api/Settings/CountryController.ts';
EntityServiceProvider.baseUrl = '/services/java/codbex-countries/gen/codbex_countries/api/settings/CountryController';
}])
.controller('PageController', ($scope, EntityService, Extensions, LocaleService, ButtonStates) => {
const Dialogs = new DialogHub();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
angular.module('page', ['blimpKit', 'platformView', 'platformLocale', 'EntityService'])
.config(['EntityServiceProvider', (EntityServiceProvider) => {
EntityServiceProvider.baseUrl = '/services/ts/codbex-countries/gen/codbex-countries/api/Settings/CountryController.ts';
EntityServiceProvider.baseUrl = '/services/java/codbex-countries/gen/codbex_countries/api/settings/CountryController';
}])
.controller('PageController', ($scope, $http, ViewParameters, LocaleService, EntityService) => {
const Dialogs = new DialogHub();
Expand Down
Loading
Loading