| @@ -104,7 +104,8 @@ app.state.StatsExport = function() | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : groupId | |||||
| teamId : groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res2 ) | function( res2 ) | ||||
| { | { | ||||
| @@ -23,7 +23,8 @@ const AppointmentCalendar = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : p.groupId | |||||
| teamId : p.groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -25,7 +25,8 @@ const AppointmentList = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : groupId | |||||
| teamId : groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -40,7 +40,8 @@ const ContractCharging = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : groupId | |||||
| teamId : groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -25,7 +25,8 @@ const ContractCreate = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : groupId | |||||
| teamId : groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -27,7 +27,8 @@ const CoronaSpecial = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : groupId | |||||
| teamId : groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -44,7 +44,8 @@ const EmployeeList = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : p.get( 'groupId' ) | |||||
| teamId : p.get( 'groupId' ), | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -22,7 +22,9 @@ const MemberList = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : p.get( 'groupId' ) | |||||
| teamId : p.get( 'groupId' ), | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -26,7 +26,8 @@ const SettingsAccess = { | |||||
| 'Team', | 'Team', | ||||
| 'getDetails', | 'getDetails', | ||||
| { | { | ||||
| teamId : groupId | |||||
| teamId : groupId, | |||||
| includeMembers: true | |||||
| }, | }, | ||||
| function( res ) | function( res ) | ||||
| { | { | ||||
| @@ -39,4 +39,4 @@ Francis_Utils_Config::set( 'slack.logWebhook', "https://hooks.slack.com/services | |||||
| Francis_Utils_Config::set( 'analytics.trackingId', 'UA-139730172-1' ); | Francis_Utils_Config::set( 'analytics.trackingId', 'UA-139730172-1' ); | ||||
| // Manager console | // Manager console | ||||
| Francis_Utils_Config::set( 'url.manager', 'https://manager.probuddy.de/' ); | |||||
| Francis_Utils_Config::set( 'url.manager', 'http://localhost:8097/client/manager' ); | |||||