-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
3,715 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,8 @@ spdashboard_support_email: [email protected] | |
spdashboard_manage_prod_host: "https://manage-prod.{{ base_domain }}" | ||
spdashboard_manage_test_publication_status: testaccepted | ||
spdashboard_manage_prod_publication_status: prodaccepted | ||
spdashboard_manage_test_oidcng_enabled: true | ||
spdashboard_manage_prod_oidcng_enabled: true | ||
spdashboard_nodejs_rpm_url: "https://rpm.nodesource.com/pub_11.x/el/7/x86_64/nodesource-release-el7-1.noarch.rpm" | ||
spdashboard_jira_host: https://jira-test.surfnet.nl | ||
spdashboard_jira_username: username | ||
|
@@ -31,5 +33,7 @@ spdashboard_jira_manageid_field_label: "SURFconext Manage ID" | |
spdashboard_jira_project_key: CXT | ||
spdashboard_test_mode_enabled: false | ||
spdashboard_test_mode_path: '../var/issues.json' | ||
playground_uri_test: https://authz-playground.dev.support.surfconext.nl | ||
playground_uri_prod: https://authz-playground.dev.support.surfconext.nl | ||
spdashboard_playground_uri_test: https://authz-playground.dev.support.surfconext.nl/redirect | ||
spdashboard_playground_uri_prod: https://authz-playground.dev.support.surfconext.nl/redirect | ||
spdashboard_oidcng_playground_uri_test: https://oidc-playground.dev.support.surfconext.nl/redirect | ||
spdashboard_oidcng_playground_uri_prod: https://oidc-playground.dev.support.surfconext.nl/redirect |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
namespace Application\Migrations; | ||
|
||
use Doctrine\DBAL\Migrations\AbstractMigration; | ||
use Doctrine\DBAL\Schema\Schema; | ||
|
||
/** | ||
* Add the OIDC TNG resource servers column to the entities entity | ||
* | ||
* Used by OIDC TNG client entities to track which OIDC TNG resource servers are associated to them. | ||
*/ | ||
class Version20190909100159 extends AbstractMigration | ||
{ | ||
/** | ||
* @param Schema $schema | ||
*/ | ||
public function up(Schema $schema) | ||
{ | ||
// this up() migration is auto-generated, please modify it to your needs | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('ALTER TABLE entity ADD oidcng_resource_servers LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:object)\''); | ||
} | ||
|
||
/** | ||
* @param Schema $schema | ||
*/ | ||
public function down(Schema $schema) | ||
{ | ||
// this down() migration is auto-generated, please modify it to your needs | ||
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); | ||
|
||
$this->addSql('ALTER TABLE entity DROP oidcng_resource_servers'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
'use strict'; | ||
|
||
import * as $ from 'jquery'; | ||
|
||
/** | ||
* Add prevent submission of forms by pressing enter in input fields | ||
* @param $input | ||
*/ | ||
$(document).on('keydown', ':input:not(textarea):not(:submit)', (event: JQuery.Event) => { | ||
if (event.key === 'Enter') { | ||
event.preventDefault(); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.