mirror of
https://github.com/wassname/talk.git
synced 2026-09-09 11:38:08 +08:00
[next] Admin Configure (#2076)
* feat: Add RadioButton and CheckBox * feat: configure facebook and google auth * feat: configure sso, localAuth and displayName + some tests * test: add integration tests for configure auth * test: more integration tests * feat: add oidc support * test: add oidc integration test * feat: generate sso key initially * fix: import fetchQuery from correct package * fix: admin url * fix: set timezone to utc when testing * refactor: improve route config * fix: remove obsolete line * fix: clientMutationId increment * fix: oidc only create when enabled * fix: copy * test: update snapshots * feat: fixed graphql logging extension * Update src/locales/en-US/admin.ftl Co-Authored-By: cvle <vinh@wikiwi.io> * Apply suggestions from code review Co-Authored-By: cvle <vinh@wikiwi.io> * test: update snapshots * fix: change Local Auth to Email Authentication * fix: copy updates
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import React, { Component } from "react";
|
||||
import * as styles from "./App.css";
|
||||
import styles from "./App.css";
|
||||
|
||||
import WizardContainer from "../containers/WizardContainer";
|
||||
import MainBar from "./MainBar";
|
||||
|
||||
@@ -4,7 +4,7 @@ import React, { StatelessComponent } from "react";
|
||||
|
||||
import { Flex, Typography } from "talk-ui/components";
|
||||
|
||||
import * as styles from "./Header.css";
|
||||
import styles from "./Header.css";
|
||||
|
||||
interface HeaderProps {
|
||||
main?: boolean;
|
||||
|
||||
@@ -2,7 +2,7 @@ import React from "react";
|
||||
|
||||
import { Typography } from "talk-ui/components";
|
||||
|
||||
import * as styles from "./MainBar.css";
|
||||
import styles from "./MainBar.css";
|
||||
|
||||
const MainBar = () => {
|
||||
return (
|
||||
|
||||
@@ -6,7 +6,7 @@ import { Step, StepBar } from "talk-ui/components";
|
||||
|
||||
import { WizardProps } from "../components/Wizard";
|
||||
import Header from "./Header";
|
||||
import * as styles from "./Wizard.css";
|
||||
import styles from "./Wizard.css";
|
||||
|
||||
export interface WizardProps {
|
||||
currentStep: number;
|
||||
|
||||
Reference in New Issue
Block a user