-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Api reference + update Navigation
- Loading branch information
Showing
4,568 changed files
with
15,112 additions
and
19,036 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
28 changes: 28 additions & 0 deletions
28
backend/src/main/kotlin/org/jacodb/impl/http/resources/Navigation.kt
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,28 @@ | ||
package org.jacodb.impl.http.resources | ||
|
||
object Navigation { | ||
private val documentation = listOf( | ||
"installation", | ||
"basic-usage", | ||
"database-features", | ||
"classpath-features", | ||
"instructions", | ||
"graphs", | ||
"migration", | ||
"ifds" | ||
).map { "/documentation/$it" } | ||
|
||
private val usageExamples = listOf( | ||
"type-solving", | ||
"approximations", | ||
"symbolic-execution" | ||
).map { "/usage-examples/$it" } | ||
|
||
private val about = listOf( | ||
"about-the-project", | ||
"benchmarking" | ||
).map { "/about/$it" } | ||
|
||
val urls = documentation + about + usageExamples | ||
|
||
} |
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
Oops, something went wrong.