-
Notifications
You must be signed in to change notification settings - Fork 20
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
Bugfix/generate config json for ftd api docs #122
Merged
annikulin
merged 4 commits into
CiscoDevNet:master
from
kalinindenys:bugfix/generate-config-json-for-ftd-api-docs
May 25, 2020
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
ce9b082
Add config json file template for ftd-api docs
kalinindenys 0fb3916
Move static files for ftd-ansible docs to relevant folder
kalinindenys 16d70b5
Make StaticDocGenerator generate root config.json file for ftd-api
kalinindenys ebee3b5
Fix error codes variable value in context
kalinindenys File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,37 @@ | ||
{ | ||
"items": [ | ||
{ | ||
"title": "Overview", | ||
"items": [ | ||
{ | ||
"title": "Introduction to Firepower Threat Defense REST API", | ||
"content": "introduction/intro.md" | ||
}, | ||
{ | ||
"title": "Authenticating Your REST API Client Using OAuth", | ||
"content": "introduction/auth.md" | ||
}, | ||
{ | ||
"title": "Deploying Configuration Changes", | ||
"content": "introduction/deploy_config.md" | ||
} | ||
] | ||
}, | ||
{% if error_codes %} | ||
{ | ||
"title": "Error Codes", | ||
"content": "error_codes.md" | ||
}, | ||
{% endif %} | ||
{ | ||
"title": "Resources", | ||
"type": "config", | ||
"content": "resources/config.json" | ||
}, | ||
{ | ||
"title": "Models", | ||
"type": "config", | ||
"content": "models/config.json" | ||
} | ||
] | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need to set this variable here? Shouldn't
Error Codes
section be a part ofconfig.json
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(Changed to bool(error_codes))
Devices before 6.4 don't have error codes file, so in this case,
error_codes.md
file will not be present