-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/dinesh-aot/EPIC-FLOW int…
…o 1356
- Loading branch information
Showing
21 changed files
with
362 additions
and
27 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
epictrack-api/migrations/versions/7a42d4f57279_project_lead_to_team_lead.py
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,24 @@ | ||
"""project lead to team lead | ||
Revision ID: 7a42d4f57279 | ||
Revises: 1e1a2af1605b | ||
Create Date: 2023-11-24 13:39:01.142953 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '7a42d4f57279' | ||
down_revision = '1e1a2af1605b' | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
op.execute("Update roles set name='Team Lead' where name='Project Lead'") | ||
|
||
|
||
def downgrade(): | ||
pass |
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
Binary file modified
BIN
+17 Bytes
(100%)
...-api/src/api/templates/event_templates/project_notification/001-Project_Notification.xlsx
Binary file not shown.
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
27 changes: 27 additions & 0 deletions
27
epictrack-web/src/components/myWorkplans/Filters/AssigneeToggle.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,27 @@ | ||
import React from "react"; | ||
import { FormControlLabel, Stack, Switch } from "@mui/material"; | ||
import { useAppSelector } from "../../../hooks"; | ||
import { ETCaption2 } from "../../shared"; | ||
import { Palette } from "../../../styles/theme"; | ||
import { CustomSwitch } from "../../shared/CustomSwitch"; | ||
|
||
export const AssigneeToggle = () => { | ||
const user = useAppSelector((state) => state.user.userDetail); | ||
|
||
const [isUsersWorkPlans, setIsUsersWorkPlans] = React.useState(false); | ||
return ( | ||
<Stack direction="row" spacing={1} alignItems={"center"}> | ||
<> | ||
<ETCaption2 bold color={Palette.neutral.dark}> | ||
{user.firstName}'s{" "} | ||
</ETCaption2> | ||
<ETCaption2 color={Palette.neutral.dark}>Workplans</ETCaption2> | ||
</> | ||
<CustomSwitch | ||
color="primary" | ||
checked={isUsersWorkPlans} | ||
onChange={() => setIsUsersWorkPlans(!isUsersWorkPlans)} | ||
/> | ||
</Stack> | ||
); | ||
}; |
12 changes: 12 additions & 0 deletions
12
epictrack-web/src/components/myWorkplans/Filters/NameFilter.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,12 @@ | ||
import React from "react"; | ||
import { TextField } from "@mui/material"; | ||
|
||
export const NameFilter = () => { | ||
return ( | ||
<TextField | ||
placeholder="Search for a Project" | ||
variant="outlined" | ||
fullWidth | ||
/> | ||
); | ||
}; |
Oops, something went wrong.