*** Wartungsfenster jeden ersten Mittwoch vormittag im Monat ***

Skip to content
Snippets Groups Projects

Add CLI command for reindexing entites in the search engine

Merged Moser, Maximilian requested to merge mm/rebuild-indices into master
4 files
+ 79
3
Compare changes
  • Side-by-side
  • Inline
Files
4
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
#
#
# Copyright (C) 2020 - 2021 TU Wien.
# Copyright (C) 2020 - 2022 TU Wien.
#
#
# Invenio-Utilities-TUW is free software; you can redistribute it and/or
# Invenio-Utilities-TUW is free software; you can redistribute it and/or
# modify it under the terms of the MIT License; see LICENSE file for more
# modify it under the terms of the MIT License; see LICENSE file for more
@@ -13,6 +13,7 @@ import click
@@ -13,6 +13,7 @@ import click
from .drafts import drafts
from .drafts import drafts
from .files import files
from .files import files
from .records import records
from .records import records
 
from .search import search
from .users import users
from .users import users
@@ -24,4 +25,5 @@ def utilities():
@@ -24,4 +25,5 @@ def utilities():
utilities.add_command(drafts)
utilities.add_command(drafts)
utilities.add_command(files)
utilities.add_command(files)
utilities.add_command(records)
utilities.add_command(records)
 
utilities.add_command(search)
utilities.add_command(users)
utilities.add_command(users)
Loading