6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
|
|
import { ReduxActionTypes } from "@appsmith/constants/ReduxActionConstants";
|
||
|
|
|
||
|
|
export const getCurrentTenant = () => ({
|
||
|
|
type: ReduxActionTypes.FETCH_CURRENT_TENANT_CONFIG,
|
||
|
|
});
|