(ctx context.Context, arg database.InsertWorkspaceAgentLogSourcesParams)
| 5947 | } |
| 5948 | |
| 5949 | func (q *querier) InsertWorkspaceAgentLogSources(ctx context.Context, arg database.InsertWorkspaceAgentLogSourcesParams) ([]database.WorkspaceAgentLogSource, error) { |
| 5950 | // TODO: This is used by the agent, should we have an rbac check here? |
| 5951 | return q.db.InsertWorkspaceAgentLogSources(ctx, arg) |
| 5952 | } |
| 5953 | |
| 5954 | func (q *querier) InsertWorkspaceAgentLogs(ctx context.Context, arg database.InsertWorkspaceAgentLogsParams) ([]database.WorkspaceAgentLog, error) { |
| 5955 | // TODO: This is used by the agent, should we have an rbac check here? |
nothing calls this directly
no test coverage detected