mirror of https://github.com/CIRCL/AIL-framework
fix: [correlation] merge conflict
parent
46f6f648a0
commit
d5f6ffe84b
|
@ -18,7 +18,7 @@ import Flask_config
|
||||||
|
|
||||||
# Import Role_Manager
|
# Import Role_Manager
|
||||||
from Role_Manager import create_user_db, check_password_strength, check_user_role_integrity
|
from Role_Manager import create_user_db, check_password_strength, check_user_role_integrity
|
||||||
from Role_Manager import login_admin, login_analyst, login_read_only
|
from Role_Manager import login_admin, login_analyst
|
||||||
|
|
||||||
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib'))
|
sys.path.append(os.path.join(os.environ['AIL_BIN'], 'lib'))
|
||||||
import Correlate_object
|
import Correlate_object
|
||||||
|
@ -121,7 +121,7 @@ def get_card_metadata(object_type, correlation_id, type_id=None, expand_card=Fal
|
||||||
# ============= ROUTES ==============
|
# ============= ROUTES ==============
|
||||||
@correlation.route('/correlation/show_correlation', methods=['GET', 'POST']) # GET + POST
|
@correlation.route('/correlation/show_correlation', methods=['GET', 'POST']) # GET + POST
|
||||||
@login_required
|
@login_required
|
||||||
@login_read_only
|
@login_analyst
|
||||||
def show_correlation():
|
def show_correlation():
|
||||||
if request.method == 'POST':
|
if request.method == 'POST':
|
||||||
object_type = request.form.get('object_type')
|
object_type = request.form.get('object_type')
|
||||||
|
@ -197,7 +197,7 @@ def show_correlation():
|
||||||
|
|
||||||
@correlation.route('/correlation/graph_node_json')
|
@correlation.route('/correlation/graph_node_json')
|
||||||
@login_required
|
@login_required
|
||||||
@login_read_only
|
@login_analyst
|
||||||
def graph_node_json(): # # TODO: use post
|
def graph_node_json(): # # TODO: use post
|
||||||
correlation_id = request.args.get('correlation_id')
|
correlation_id = request.args.get('correlation_id')
|
||||||
type_id = request.args.get('type_id')
|
type_id = request.args.get('type_id')
|
||||||
|
|
Loading…
Reference in New Issue