mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2024-11-08 17:43:07 -05:00
ok see you in a month kek
This commit is contained in:
parent
fa6cefb6ed
commit
80be23f7df
2 changed files with 19 additions and 5 deletions
|
@ -31,6 +31,10 @@ class config{
|
|||
// @TODO: 2 = invite only (users needs a pass)
|
||||
const BOT_PROTECTION = 0;
|
||||
|
||||
// Maximal number of searches per captcha key/pass issued. Counter gets
|
||||
// reset on every APCU cache clear (should happen once a day)
|
||||
const MAX_SEARCHES = 100;
|
||||
|
||||
// if BOT_PROTECTION is set to 1, specify the available datasets here
|
||||
// images should be named from 1.png to X.png, and be 100x100 in size
|
||||
// Eg. data/captcha/birds/1.png up to 2263.png
|
||||
|
@ -84,7 +88,9 @@ class config{
|
|||
const PROXY_MARGINALIA = false;
|
||||
const PROXY_MOJEEK = false;
|
||||
const PROXY_SC = false; // soundcloud
|
||||
const PROXY_SPOTIFY = false;
|
||||
const PROXY_WIBY = false;
|
||||
const PROXY_CURLIE = false;
|
||||
const PROXY_YT = false; // youtube
|
||||
const PROXY_YEP = false;
|
||||
const PROXY_PINTEREST = false;
|
||||
|
@ -101,8 +107,8 @@ class config{
|
|||
// SOUNDCLOUD
|
||||
// Get these parameters by making a search on soundcloud with network
|
||||
// tab open, then filter URLs using "search?q=". (No need to login)
|
||||
const SC_USER_ID = "143860-454480-469473-289775";
|
||||
const SC_CLIENT_TOKEN = "qwfvRfz8PCoa2NldZALK7hhZFIH24Wyx";
|
||||
const SC_USER_ID = "119817-879192-49172-644216";
|
||||
const SC_CLIENT_TOKEN = "Hd4akujkPoaPv8SOUw6sqAySNno8EM7b";
|
||||
|
||||
// MARGINALIA
|
||||
// Get an API key by contacting the Marginalia.nu maintainer. The "public" key
|
||||
|
|
|
@ -136,6 +136,10 @@ $settings = [
|
|||
[
|
||||
"value" => "wiby",
|
||||
"text" => "wiby"
|
||||
],
|
||||
[
|
||||
"value" => "curlie",
|
||||
"text" => "Curlie"
|
||||
]
|
||||
]
|
||||
],
|
||||
|
@ -236,6 +240,10 @@ $settings = [
|
|||
[
|
||||
"value" => "sc",
|
||||
"text" => "SoundCloud"
|
||||
],
|
||||
[
|
||||
"value" => "spotify",
|
||||
"text" => "Spotify"
|
||||
]
|
||||
]
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue