Skip to content

Commit

Permalink
These should include index.php, also bump version to 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mickenordin committed Aug 6, 2024
1 parent f8f6f13 commit c9388f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion edusign/appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<description>
<![CDATA[Edusign integration for Nextcloud]]>
</description>
<version>0.0.2</version>
<version>0.0.3</version>
<licence>agpl</licence>
<author mail="kano@sunet.se" homepage="https://github.com/SUNET/nextcloud-edusign">Mikael
Nordin</author>
Expand Down
4 changes: 2 additions & 2 deletions edusign/lib/Controller/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public function request(): JSONResponse
$params = $this->request->getParams();
$path = $params['path'];
$redirect_uri = $params['redirect_uri'];
$return_url = $this->urlGenerator->getAbsoluteURL("/apps/edusign/response");
$return_url = $this->urlGenerator->getAbsoluteURL("/index.php/apps/edusign/response");
$error_response = array("error" => true);
if (!$this->userId) {
$error_response["message"] = "No user logged in";
Expand Down Expand Up @@ -260,7 +260,7 @@ public function response(): RedirectResponse
$relay_state = $params['RelayState'];
$sign_response = $params['EidSignResponse'];
$redirect_uri = $this->urlGenerator->getBaseUrl();
$return_url = $this->urlGenerator->getAbsoluteURL("/apps/edusign/response");
$return_url = $this->urlGenerator->getAbsoluteURL("/index.php/apps/edusign/response");
$uid = $this->getAppValue('eduid-uid-' . $relay_state);
$docreq = array(
"api_key" => "dummy",
Expand Down

0 comments on commit c9388f7

Please sign in to comment.