Files
@ c0da0ef508da
Branch filter:
Location: kallithea/setup.cfg
c0da0ef508da
805 B
text/x-ini
auth: only API keys with 40 alpha-numeric characters are valid
This makes it easy to disable API keys in the database without violating the
uniqueness constraint, using something like:
UPDATE users SET api_key='-'||api_key;
UPDATE user_api_keys SET api_key='-'||api_key;
This makes it easy to disable API keys in the database without violating the
uniqueness constraint, using something like:
UPDATE users SET api_key='-'||api_key;
UPDATE user_api_keys SET api_key='-'||api_key;