Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Relationship Types): Relationship Types Editor and Relationship Types Page #1005

Merged
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b7b2230
feat(RelationshipType): Relationship Type Editor
the-good-boy Jul 28, 2023
a675445
feat(RelationshipTypes): Add a Relationship Types page
the-good-boy Jul 31, 2023
1c49e91
Privilege Dropdown improvements
the-good-boy Jul 31, 2023
13aad36
feat(RelationshipTypeEditor): Add Attribute Types and other improvements
the-good-boy Jul 31, 2023
cb5dec3
fix(RelationshipTypeEditor): Uniformize Label names of fields
the-good-boy Jul 31, 2023
b0d0ba2
fix(AdminSystem): Add authorization to all the new routes
the-good-boy Jul 31, 2023
d7f6a07
Merge branch 'administration-system' into relationshipTypeEditor
the-good-boy Jul 31, 2023
5cf0255
fix: prevent a submission without updating any field while editing
the-good-boy Aug 2, 2023
d48bc5b
Merge branch 'relationshipTypeEditor' of https://github.com/the-good-…
the-good-boy Aug 2, 2023
fb0b5da
feat: Relationship types matrix and some improvements
the-good-boy Aug 3, 2023
7564180
misc: fix linting error
the-good-boy Aug 3, 2023
6f2f280
fix: define the relationship-types route in one place
the-good-boy Aug 3, 2023
0aa66c3
remove authentication from relationship-types page
the-good-boy Aug 3, 2023
b606785
Add docs menu
the-good-boy Aug 11, 2023
6b38d03
fix relationship types routes and other misc improvements
the-good-boy Aug 11, 2023
5bbeb3d
fix: parentTypes should be filtered according to source and target en…
the-good-boy Aug 14, 2023
69b722b
fix: add error handling when trying to edit a non-existent relationsh…
the-good-boy Aug 16, 2023
333b304
add css for relationship-type-details
the-good-boy Aug 16, 2023
6bbc184
test: add test for relationship-type routes
the-good-boy Aug 16, 2023
2b10fcf
misc: fix the path in tests
the-good-boy Aug 16, 2023
4c998fe
misc: improve footer links
the-good-boy Aug 16, 2023
399caf1
misc: fix css in relationship-types-tree
the-good-boy Aug 16, 2023
291c54a
misc: fix relationship-type order and other improvements
the-good-boy Aug 16, 2023
d68d4dc
misc: add relationship type editor icon
the-good-boy Aug 16, 2023
361e024
misc: fix test statements
the-good-boy Aug 16, 2023
d44d67a
fix: use startCase and fix createRelationshipType
the-good-boy Aug 17, 2023
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
21 changes: 9 additions & 12 deletions src/client/components/footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,20 @@ function Footer(props) {
</small>
</Col>
<Col className="text-right" xs={4}>
<small>
<div className="small">
<a href="/admin-logs">
the-good-boy marked this conversation as resolved.
Show resolved Hide resolved
Admin logs
Admin Logs
</a>
</small>
</div>
<div className="small">
<a href="/privacy">
Privacy & Terms
</a>
</div>
</Col>
</Row>
<Row>
<Col xs={4}/>
<Col className="text-center" xs={4}>
<Col className="text-center" xs={12}>
<small>
Alpha Software —{' '}
<a href={`${repositoryUrl}tree/${siteRevision || 'master'}`}>
Expand All @@ -79,13 +83,6 @@ function Footer(props) {
</a>
</small>
</Col>
<Col className="text-right" xs={4}>
<small>
<a href="/privacy">
Privacy & Terms
</a>
</small>
</Col>
</Row>
</Container>
</footer>
Expand Down
Loading
Loading