Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ lazy val `pluto-core` = (project in file("."))
dockerRepository := Some("guardianmultimedia"),
packageName in Docker := "guardianmultimedia/pluto-core",
packageName := "pluto-core",
dockerBaseImage := "docker.io/openjdk:8u292-jre-slim-buster",
dockerBaseImage := "docker.io/eclipse-temurin:8-jre-jammy",
dockerPermissionStrategy := DockerPermissionStrategy.CopyChown,
dockerAlias := docker.DockerAlias(None,Some("guardianmultimedia"),"pluto-core",Some(sys.props.getOrElse("build.number","DEV"))),
scalacOptions ++= Seq("-deprecation", "-feature"),
Expand Down
13 changes: 0 additions & 13 deletions frontend/app/CommissionsList/CommissionEntryEditComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -640,19 +640,6 @@ const CommissionEntryEditComponent: React.FC<RouteComponentProps<
<Grid item>
<Typography variant="h4">Projects</Typography>
</Grid>
<Grid item>
<Button
variant="contained"
color="primary"
onClick={() =>
history.push(
`/project/new?commissionId=${commissionId}&workingGroupId=${commissionData?.workingGroupId}`
)
}
>
New Project
</Button>
</Grid>
</Grid>
<Grid container>
{filterTerms ? (
Expand Down
12 changes: 0 additions & 12 deletions frontend/app/CommissionsList/CommissionsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -200,18 +200,6 @@ const CommissionsList: React.FC = () => {
/>
</Grid>
) : null}
<Grid className={classes.buttonGrid} style={{ marginLeft: "auto" }}>
<Button
className={classes.createButton}
variant="contained"
color="primary"
onClick={() => {
history.push("/commission/new");
}}
>
New
</Button>
</Grid>
</Grid>
<Paper elevation={3}>
<TableContainer>
Expand Down
12 changes: 0 additions & 12 deletions frontend/app/ProjectEntryList/ProjectEntryList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,18 +132,6 @@ const ProjectEntryList: React.FC<RouteComponentProps> = () => {
/>
</Grid>
) : null}
<Grid className={classes.buttonGrid}>
<Button
className={classes.createButton}
variant="contained"
color="primary"
onClick={() => {
history.push("/project/new");
}}
>
New
</Button>
</Grid>
</Grid>
<Paper elevation={3}>
<ProjectsTable
Expand Down
18 changes: 0 additions & 18 deletions frontend/app/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -324,15 +324,6 @@ class App extends React.Component {
component={ProjectTypeMultistep}
/>
<Route path="/type/" component={ProjectTypeList} />
<Route
path="/project/new"
render={(props) => (
<ProjectCreateMultistepNew
isAdmin={this.state.isAdmin}
{...props}
/>
)}
/>
<Route
path="/project/:itemid/backups"
component={ProjectBackups}
Expand All @@ -354,15 +345,6 @@ class App extends React.Component {
component={ProjectEntryEditComponent}
/>
<Route path="/project/" component={ProjectEntryList} />
<Route
path="/commission/new"
render={(props) => (
<CommissionMultistepNew
match={props.match}
userName={this.state.currentUsername}
/>
)}
/>
<Route
path="/commission/:commissionId/deletedata"
component={CommissionDeleteDataComponent}
Expand Down
17 changes: 0 additions & 17 deletions frontend/app/multistep/commissioncreate_new/CommissionCreated.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,23 +40,6 @@ const CommissionCreated: React.FC<CommissionCreatedProps> = (props) => {
</div>
<br />
<Grid container spacing={3}>
<Grid item xs={8}>
<Typography>Create a project</Typography>
</Grid>
<Grid item xs={4}>
<Button
style={buttonStyle}
color="primary"
variant="contained"
onClick={() =>
history.push(
`/project/new?commissionId=${props.commissionId}&workingGroupId=${props.workingGroupId}`
)
}
>
New Project
</Button>
</Grid>
<Grid item xs={8}>
<Typography>Go to the new commission's page</Typography>
</Grid>
Expand Down
Loading