mirror of
https://github.com/System-End/nephthys.git
synced 2026-04-19 22:05:12 +00:00
Add Stasis transcript (#158)
* Add Stasis transcript * Add Stasis to transcripts list * pre-commit be happy --------- Co-authored-by: Amber <amber@transcental.dev>
This commit is contained in:
parent
950c1b0894
commit
52d170290f
2 changed files with 27 additions and 0 deletions
|
|
@ -7,6 +7,7 @@ from nephthys.transcripts.transcripts.flavortown import Flavortown
|
|||
from nephthys.transcripts.transcripts.identity import Identity
|
||||
from nephthys.transcripts.transcripts.jumpstart import Jumpstart
|
||||
from nephthys.transcripts.transcripts.midnight import Midnight
|
||||
from nephthys.transcripts.transcripts.stasis import Stasis
|
||||
from nephthys.transcripts.transcripts.summer_of_making import SummerOfMaking
|
||||
|
||||
|
||||
|
|
@ -17,4 +18,5 @@ transcripts: List[Type[Transcript]] = [
|
|||
Midnight,
|
||||
Construct,
|
||||
Jumpstart,
|
||||
Stasis,
|
||||
]
|
||||
|
|
|
|||
25
nephthys/transcripts/transcripts/stasis.py
Normal file
25
nephthys/transcripts/transcripts/stasis.py
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
from nephthys.transcripts.transcript import Transcript
|
||||
|
||||
|
||||
class Stasis(Transcript):
|
||||
"""Transcript for Stasis"""
|
||||
|
||||
program_name: str = "Stasis"
|
||||
program_owner: str = "U01581HFAGZ"
|
||||
|
||||
help_channel: str = "C09JP51FHN"
|
||||
ticket_channel: str = "C0ADS32EJKE"
|
||||
team_channel: str = "C09HXBX6336"
|
||||
|
||||
faq_link: str = "https://hackclub.enterprise.slack.com/docs/T0266FRGM/F0AD7A7SP71"
|
||||
identity_help_channel: str = "C092833JXKK"
|
||||
|
||||
first_ticket_create: str = f"""
|
||||
hi (user)! it looks like this is your first time here, welcome! someone should be along to help you soon but please read the <{faq_link}|faq>, it answers a lot of common questions.
|
||||
if your question has been answered, please hit the button below to mark it as resolved
|
||||
"""
|
||||
ticket_create: str = f"someone should be along to help you soon but in the mean time i suggest you read the faq <{faq_link}|here> to make sure your question hasn't already been answered. if it has been, please hit the button below to mark it as resolved :D"
|
||||
resolve_ticket_button: str = "i get it now"
|
||||
ticket_resolve: str = f"oh, oh! it looks like this post has been marked as resolved by <@{{user_id}}>! if you have any more questions, please make a new post in <#{help_channel}> and someone'll be happy to help you out! not me though, i'm just a silly racoon ^-^"
|
||||
|
||||
not_allowed_channel: str = f"heya, it looks like you're not supposed to be in that channel, pls talk to <@{program_owner}> if that's wrong"
|
||||
Loading…
Add table
Reference in a new issue