Links angepasst
This commit is contained in:
parent
f9d83c53b0
commit
4c2666b22c
|
|
@ -46,8 +46,8 @@ class Application extends App {
|
||||||
class DeleteNCFileDjango extends Controller {
|
class DeleteNCFileDjango extends Controller {
|
||||||
|
|
||||||
protected $session;
|
protected $session;
|
||||||
//private $nclink = 'https://test.app.digitale-agentur.com';
|
private $nclink = 'https://test.app.digitale-agentur.com';
|
||||||
private $nclink = 'http://host.docker.internal:8000';
|
//private $nclink = 'http://host.docker.internal:8000';
|
||||||
|
|
||||||
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
||||||
parent::__construct($AppName, $request);
|
parent::__construct($AppName, $request);
|
||||||
|
|
@ -78,8 +78,8 @@ class LoginByNC extends Controller {
|
||||||
|
|
||||||
protected $session;
|
protected $session;
|
||||||
protected $request;
|
protected $request;
|
||||||
//private $nclink = 'https://test.app.digitale-agentur.com';
|
private $nclink = 'https://test.app.digitale-agentur.com';
|
||||||
private $nclink = 'http://host.docker.internal:8000';
|
//private $nclink = 'http://host.docker.internal:8000';
|
||||||
|
|
||||||
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
||||||
$this->request = $request;
|
$this->request = $request;
|
||||||
|
|
@ -129,8 +129,8 @@ class UserChangedByNC extends Controller {
|
||||||
|
|
||||||
protected $session;
|
protected $session;
|
||||||
protected $request;
|
protected $request;
|
||||||
//private $nclink = 'https://test.app.digitale-agentur.com';
|
private $nclink = 'https://test.app.digitale-agentur.com';
|
||||||
private $nclink = 'http://host.docker.internal:8000';
|
//private $nclink = 'http://host.docker.internal:8000';
|
||||||
|
|
||||||
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
||||||
$this->request = $request;
|
$this->request = $request;
|
||||||
|
|
@ -164,8 +164,8 @@ class UserChangedByNC extends Controller {
|
||||||
class LogoutByNC extends Controller {
|
class LogoutByNC extends Controller {
|
||||||
|
|
||||||
protected $session;
|
protected $session;
|
||||||
//private $nclink = 'https://test.app.digitale-agentur.com';
|
private $nclink = 'https://test.app.digitale-agentur.com';
|
||||||
private $nclink = 'http://host.docker.internal:8000';
|
//private $nclink = 'http://host.docker.internal:8000';
|
||||||
|
|
||||||
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
public function __construct(string $AppName, IRequest $request, IUserSession $session) {
|
||||||
parent::__construct($AppName, $request);
|
parent::__construct($AppName, $request);
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,8 @@ class PageController extends Controller {
|
||||||
protected $appName;
|
protected $appName;
|
||||||
protected $userSession;
|
protected $userSession;
|
||||||
private $service;
|
private $service;
|
||||||
private $nclink = 'http://host.docker.internal:8000';
|
private $nclink = 'https://test.app.digitale-agentur.com';
|
||||||
|
//private $nclink = 'http://host.docker.internal:8000';
|
||||||
|
|
||||||
public function __construct($appName, IRequest $request, AgencyService $service, IUserSession $userSession) {
|
public function __construct($appName, IRequest $request, AgencyService $service, IUserSession $userSession) {
|
||||||
parent::__construct($appName, $request);
|
parent::__construct($appName, $request);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue