feat: update bug report template to reflect terminology change from "gift" to "purchase" for Stars

This commit is contained in:
bohd4nx
2026-03-16 19:00:55 +02:00
parent 8d58ed890d
commit b726a2274c
+3 -3
View File
@@ -45,7 +45,7 @@ body:
attributes: attributes:
label: Expected behavior label: Expected behavior
description: Describe what you expected to happen. description: Describe what you expected to happen.
placeholder: e.g. Stars should be gifted and StarsResult returned. placeholder: e.g. Stars should be purchased and StarsResult returned.
validations: validations:
required: true required: true
@@ -63,7 +63,7 @@ body:
description: Minimal steps that reproduce the issue. description: Minimal steps that reproduce the issue.
placeholder: | placeholder: |
1. Create FragmentClient with valid credentials 1. Create FragmentClient with valid credentials
2. Call gift_stars("@username", amount=100) 2. Call purchase_stars("@username", amount=100)
3. See error 3. See error
validations: validations:
required: true required: true
@@ -78,7 +78,7 @@ body:
async def main(): async def main():
client = FragmentClient(...) client = FragmentClient(...)
result = await client.gift_stars("@username", amount=100) result = await client.purchase_stars("@username", amount=100)
asyncio.run(main()) asyncio.run(main())
render: python render: python