providing password reset services for a long while: circa 2025

feat: add close button on main signed in page

Changed files
+16
features
+16
features/command.ts
···
action_id: "reset-password",
style: "danger",
},
+
{
+
type: "button",
+
text: {
+
type: "plain_text",
+
text: "gutentag!",
+
},
+
action_id: "bye",
+
},
],
},
{
···
await context.respond({
response_type: "ephemeral",
text: "No worries! If you change your mind just type `/hackatime` again ^-^",
+
});
+
});
+
+
slackApp.action("bye", async ({ context }) => {
+
if (context?.respond)
+
await context.respond({
+
response_type: "ephemeral",
+
text: "bye!!! :goodnight:",
});
});
};