Skip to content

Commit

Permalink
Add privacy_url and sla_url
Browse files Browse the repository at this point in the history
  • Loading branch information
csev committed Feb 25, 2024
1 parent cd8d2a5 commit 26a6332
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 13 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

"nesbot/carbon" : "2.68.1",

"tsugi/lib": "dev-master#a31404f87efd9c134f72c6197c0514c162993c57",
"tsugi/lib": "dev-master#7bdf0734159a17999d841c23d66b875a2818bb90",
"koseu/lib": "dev-master#70c7ac1ca413c2dd541e078ebe07719405621b1b"
},
"config": {
Expand Down
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions vendor/composer/installed.json
Original file line number Diff line number Diff line change
Expand Up @@ -7511,12 +7511,12 @@
"source": {
"type": "git",
"url": "https://github.com/tsugiproject/tsugi-php.git",
"reference": "a31404f87efd9c134f72c6197c0514c162993c57"
"reference": "7bdf0734159a17999d841c23d66b875a2818bb90"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/tsugiproject/tsugi-php/zipball/a31404f87efd9c134f72c6197c0514c162993c57",
"reference": "a31404f87efd9c134f72c6197c0514c162993c57",
"url": "https://api.github.com/repos/tsugiproject/tsugi-php/zipball/7bdf0734159a17999d841c23d66b875a2818bb90",
"reference": "7bdf0734159a17999d841c23d66b875a2818bb90",
"shasum": ""
},
"require": {
Expand All @@ -7529,7 +7529,7 @@
"phpunit/php-timer": "v5.0.3",
"phpunit/phpunit": "9.*"
},
"time": "2024-02-14T06:20:42+00:00",
"time": "2024-02-25T01:08:32+00:00",
"default-branch": true,
"type": "library",
"installation-source": "dist",
Expand Down
6 changes: 3 additions & 3 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
'name' => '__root__',
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'c22b2aaa016a624cbf74950754f46b13a00ddb7e',
'reference' => 'cd8d2a51a97601791f15581ec52750b34c2e8be7',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -13,7 +13,7 @@
'__root__' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'c22b2aaa016a624cbf74950754f46b13a00ddb7e',
'reference' => 'cd8d2a51a97601791f15581ec52750b34c2e8be7',
'type' => 'library',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down Expand Up @@ -1045,7 +1045,7 @@
'tsugi/lib' => array(
'pretty_version' => 'dev-master',
'version' => 'dev-master',
'reference' => 'a31404f87efd9c134f72c6197c0514c162993c57',
'reference' => '7bdf0734159a17999d841c23d66b875a2818bb90',
'type' => 'library',
'install_path' => __DIR__ . '/../tsugi/lib',
'aliases' => array(
Expand Down
22 changes: 22 additions & 0 deletions vendor/tsugi/lib/src/Config/ConfigInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,28 @@ class ConfigInfo {
*/
public $git_command = false;

/**
* If defined, this is displayed as the privacy URL when Tsugi
* is used as an "App Store". If you want to use Google login,
* you need these URLs available on the OAuth application.
*
* You can see sample wording at:
*
* https://www.py4e.com/service.php
*/
public $privacy_url = false;

/**
* If defined, this is displayed as the SLA URL when Tsugi
* is used as an "App Store". If you want to use Google login,
* you need these URLs available on the OAuth application.
*
* You can see sample wording at:
*
* https://www.py4e.com/service.php
*/
public $sla_url = false;

/**
*
* Tools to hide in the store for non-admin users. Each tool sets their status
Expand Down

0 comments on commit 26a6332

Please sign in to comment.