-
Notifications
You must be signed in to change notification settings - Fork 969
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1183 from Infisical/stv3-permissioning
Move ST sections to members page (now access control)
- Loading branch information
Showing
21 changed files
with
1,622 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
frontend/src/views/Project/MembersPage/components/ServiceTokenTab/ServiceTokenTab.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { motion } from "framer-motion"; | ||
|
||
import { | ||
ServiceTokenSection, | ||
// ServiceTokenV3Section | ||
} from "./components"; | ||
|
||
export const ServiceTokenTab = () => { | ||
return ( | ||
<motion.div | ||
key="panel-service-token" | ||
transition={{ duration: 0.15 }} | ||
initial={{ opacity: 0, translateX: 30 }} | ||
animate={{ opacity: 1, translateX: 0 }} | ||
exit={{ opacity: 0, translateX: 30 }} | ||
> | ||
{/* <ServiceTokenV3Section /> */} | ||
<ServiceTokenSection /> | ||
</motion.div> | ||
); | ||
} |
Oops, something went wrong.