Skip to content

Commit

Permalink
fix(chalice): fixed heatmaps extra endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
tahayk committed Jul 3, 2024
1 parent 8f3a3ae commit a0128fb
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions ee/api/routers/core_dynamic.py
Original file line number Diff line number Diff line change
Expand Up @@ -582,12 +582,6 @@ def get_all_notes(projectId: int, data: schemas.SearchNoteSchema = Body(...),
return {'data': data}


@app.post('/{projectId}/click_maps/search', tags=["click maps"], dependencies=[OR_scope(Permissions.session_replay)])
def click_map_search(projectId: int, data: schemas.ClickMapSessionsSearch = Body(...),
context: schemas.CurrentContext = Depends(OR_context)):
return {"data": heatmaps.search_short_session(user_id=context.user_id, data=data, project_id=projectId)}


@app.post('/{project_id}/feature-flags/search', tags=["feature flags"],
dependencies=[OR_scope(Permissions.feature_flags)])
def search_feature_flags(project_id: int,
Expand Down

0 comments on commit a0128fb

Please sign in to comment.