changed the landing message

This commit is contained in:
Your Name 2021-01-25 22:57:15 +01:00
parent cfda0b5ad4
commit a51bb2af9d

7
api.py
View File

@ -140,8 +140,8 @@ def add_other_db(timestamp,seedText,request_type):
@app.route('/', methods=['GET'])
def home():
return '''<h1>Queer API</h1>
<p>A prototype API.</p>'''
return '''<h1>Queer Motto API: To know exactly how many times to cry</h1>
<a href="https://gitlab.com/siusoon/queer-motto-api">https://gitlab.com/siusoon/queer-motto-api</a>'''
@app.route('/queermottoAPI/r1/refusal', methods=['GET'])
@ -173,10 +173,13 @@ def api_args():
orgVal = str(request.args['org'])
orgVal = bytes(orgVal, encoding='utf-8')
if (rqstr == "generate" and orgVal == f1.decrypt(secrettoken1)) or (rqstr == "generate" and orgVal == f2.decrypt(secrettoken2)):
# Here we match the token to the organisation
if orgVal == f1.decrypt(secrettoken1):
org = "transmediale"
elif orgVal == f2.decrypt(secrettoken2):
org = "test"
# Another token can be added here
# Generate the motto
api_phrase_str = ''
for i in range(len(seedTextList)):