-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Endpoint for Editing Developer Application Names #142
Comments
Implement the PATCH Endpoint:from flask import Flask, request, jsonify app = Flask(name) Example data storage(Dummy Data) @app.route('/developer_application/int:app_id', methods=['PATCH']) #here Route Decorator and indicates a dynamic part of the URL, capturing the application ID if name == 'main': reference: |
Thank you, this was overwhelmingly unhelpful and my day was made worse because of it. |
I am sorry for making your day worst but from my knowledge I already use in
my project and it work And I am only suggesting you .And It upto you how to
use it .
…On Mon, 24 Jun, 2024, 9:15 pm Kyler, ***@***.***> wrote:
Thank you, this was overwhelmingly unhelpful and my day was made worse
because of it.
—
Reply to this email directly, view it on GitHub
<#142 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AWMNY7OKMQHWOV7RLQHUAQTZJA5LFAVCNFSM6AAAAABJUYF4GGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDCOBWHA4DCMZXHA>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Hello, I originally assumed your comment was created by a bot/AI. This project uses FastAPI, we do not use Flask, so your suggestion is not helpful. Furthermore, your suggestion appears to be closer to pseudo-code or perhaps an example to what an endpoint could look like in Flask. We do not store our persistent data in a dictionary, so this suggestion is not relevant You also have multiple I do genuinely appreciate your contribution and attempt to help, though this comment was misguided and not actionable. If you would like to contribute to open-source, I would highly recommend simply creating a pull request with your proposed changes, we always appreciate that! Though, ensure that you are using the correct language and frameworks and following the repo guidelines. |
Summary
Developer application names should be editable, we should add a way to modify a developer application name. This could possibly be done with a generic
patch
endpoint for/developer_application
. This endpoint will only be able to modify the name, in the future we may want to add additional fields that can be edited here.The text was updated successfully, but these errors were encountered: