Skip to content

feat: Add Git auth for GitHub, GitLab, Azure DevOps, and BitBucket #4670

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

Merged
merged 22 commits into from
Oct 25, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix Git screen
  • Loading branch information
kylecarbs committed Oct 23, 2022
commit a296e31a0fba5e79dab26ae47640490cef4670fe
12 changes: 12 additions & 0 deletions site/src/pages/GitAuthPage/GitAuthPage.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { ComponentMeta, Story } from "@storybook/react"
import GitAuthPage from "./GitAuthPage"

export default {
title: "pages/GitAuthPage",
component: GitAuthPage,
} as ComponentMeta<typeof GitAuthPage>

const Template: Story = (args) => <GitAuthPage {...args} />

export const Default = Template.bind({})
Default.args = {}
4 changes: 2 additions & 2 deletions site/src/pages/GitAuthPage/GitAuthPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ const GitAuthPage: React.FC = () => {

return (
<SignInLayout>
<Welcome message="Your Git is authenticated!" />
<Welcome message="Authenticated with Git!" />
<p className={styles.text}>
Return to your terminal to keep coding.
Your Git authentication token will be refreshed to keep you signed in.
</p>

<div className={styles.links}>
Expand Down