Skip to content

Commit

Permalink
Update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderVertegaal committed Nov 27, 2024
1 parent ed9964e commit be77c56
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions backend/minimalist_parser/views/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ def post(self, request: HttpRequest) -> HttpResponse:
if parsed is None:
return MGParserResponse(error=MGParserErrorSource.MG_PARSER).json_response()

# TODO: send parsed data to Vulcan.

return MGParserResponse(ok=True).json_response()

def send_to_parser(self, text: str) -> Optional[str]:
Expand Down
2 changes: 1 addition & 1 deletion backend/parseport/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def get(self, request):
spindle=status_check('spindle'),
mp=status_check('minimalist_parser'),
vulcan=True,
# When Vulcan is up and running, uncomment the following lines.
# When Vulcan is up and running, uncomment the following line.
# vulcan=status_check('vulcan'),
)
)

0 comments on commit be77c56

Please sign in to comment.