Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GmpABR/NexusFlow
/ functions
Functions
569 in github.com/GmpABR/NexusFlow
⨍
Functions
569
◇
Types & classes
204
Method
Login
([FromBody] LoginDto dto)
backend/Controllers/AuthController.cs:39
Method
LoginAsync
(LoginDto dto)
backend/Services/IAuthService.cs:8
Method
LoginAsync_InvalidPassword_ReturnsNull
()
Backend.Tests/AuthServiceTests.cs:113
Method
LoginAsync_ValidCredentials_ReturnsToken
()
Backend.Tests/AuthServiceTests.cs:94
Function
LoginPage
()
frontend/src/pages/LoginPage.tsx:18
Method
MapToDto
(TaskCard task)
backend/Services/TaskService.cs:761
Method
MapToTimeLogDto
(TimeLog timeLog)
backend/Services/TaskService.cs:725
Method
MarkAllAsRead
()
backend/Controllers/NotificationsController.cs:36
Method
MarkAllAsReadAsync
(int userId)
backend/Services/INotificationService.cs:11
Method
MarkAsRead
(int id)
backend/Controllers/NotificationsController.cs:28
Method
MarkAsReadAsync
(int notificationId, int userId)
backend/Services/INotificationService.cs:10
Method
MoveColumn
(int id, int columnId, [FromBody] MoveColumnDto dto)
backend/Controllers/BoardsController.cs:226
Method
MoveColumnAsync
(int boardId, int columnId, int newOrder, int userId)
backend/Services/IBoardService.cs:20
Method
MoveTask
(int id, [FromBody] MoveTaskDto dto)
backend/Controllers/TasksController.cs:67
Method
MoveTaskAsync
(int taskId, MoveTaskDto dto, int userId)
backend/Services/ITaskService.cs:10
Function
MyTasksPage
()
frontend/src/pages/MyTasksPage.tsx:27
Function
NotificationDrawer
({ opened, onClose, onNotificationClick }: NotificationDrawerProps)
frontend/src/components/NotificationDrawer.tsx:14
Method
NotificationService
(AppDbContext db, IHubContext<BoardHub> hubContext)
backend/Services/NotificationService.cs:15
Method
NotificationsController
(INotificationService notificationService)
backend/Controllers/NotificationsController.cs:16
Method
NotifyTaskUpdated
(int taskId)
backend/Controllers/TimeLogsController.cs:70
Method
OnConnectedAsync
()
backend/Hubs/BoardHub.cs:34
Method
OnDisconnectedAsync
(Exception? exception)
backend/Hubs/BoardHub.cs:54
Method
OnModelCreating
(ModelBuilder modelBuilder)
backend/Data/AppDbContext.cs:30
Function
OnlineIndicator
({ isOnline, size = 12, offset = 4 }: OnlineIndicatorProps)
frontend/src/components/OnlineIndicator.tsx:9
Function
PresenceProvider
({ children }: { children: React.ReactNode })
frontend/src/contexts/PresenceContext.tsx:11
Function
ProfilePage
()
frontend/src/pages/ProfilePage.tsx:148
Function
ProtectedRoute
({ children }: { children: React.ReactNode })
frontend/src/App.tsx:16
Method
Register
([FromBody] RegisterDto dto)
backend/Controllers/AuthController.cs:19
Method
RegisterAsync
(RegisterDto dto)
backend/Services/IAuthService.cs:7
Method
RegisterAsync_ExistingEmail_ThrowsException
()
Backend.Tests/AuthServiceTests.cs:80
Method
RegisterAsync_ExistingUsername_ThrowsException
()
Backend.Tests/AuthServiceTests.cs:66
Method
RegisterAsync_ValidUser_CreatesUserAndReturnsToken
()
Backend.Tests/AuthServiceTests.cs:46
Function
RegisterPage
()
frontend/src/pages/RegisterPage.tsx:18
Method
RemoveLabel
(int id, int labelId)
backend/Controllers/TasksController.cs:338
Method
RemoveLabelFromTaskAsync
(int taskId, int labelId, int userId)
backend/Services/ITaskService.cs:40
Method
RemoveMember
DELETE: api/workspaces/{id}/members/{userId}
backend/Controllers/WorkspacesController.cs:280
Method
RemoveMember
(int id, int userId)
backend/Controllers/BoardsController.cs:127
Method
RemoveMemberAsync
(int boardId, int userId, int requesterId)
backend/Services/IBoardService.cs:14
Method
ReopenBoard
(int id)
backend/Controllers/BoardsController.cs:174
Method
ReopenBoardAsync
(int boardId, int requesterId)
backend/Services/IBoardService.cs:17
Method
RespondToInvitation
POST: api/workspaces/{id}/respond
backend/Controllers/WorkspacesController.cs:444
Method
RespondToInvitation
(int id, [FromBody] InvitationResponseDto dto)
backend/Controllers/BoardsController.cs:109
Method
RespondToInvitationAsync
(int boardId, int userId, bool accept)
backend/Services/IBoardService.cs:13
Function
RichText
({ content, onChange, editable = true, title }: RichTextProps)
frontend/src/components/RichText.tsx:24
Method
SearchUsers_ShouldNotReturnEmails
()
Backend.Tests/SecurityTests.cs:188
Method
SetLabels
(int id, [FromBody] List<int> labelIds)
backend/Controllers/TasksController.cs:296
Method
SetTaskLabelsAsync
(int taskId, List<int> labelIds, int userId)
backend/Services/ITaskService.cs:41
Method
StartTimer
([FromBody] StartTimerDto dto)
backend/Controllers/TimeLogsController.cs:25
Method
StartTimerAsync
Time Tracking Methods
backend/Services/ITaskService.cs:27
Function
StatCard
({ title, value, icon }: { title: string, value: string, icon: React.ReactNode })
frontend/src/components/BoardDashboardView.tsx:139
Function
StatCard
({ title, value, icon, color, highlight }: { title: string; value: number; icon: React.ReactNode; color: strin
frontend/src/components/WorkspaceOverview.tsx:192
Method
StopTimer
([FromBody] StopTimerDto dto, [FromQuery] int taskId)
backend/Controllers/TimeLogsController.cs:35
Method
StopTimerAsync
(int taskId, int userId, DateTime? stoppedAt = null)
backend/Services/ITaskService.cs:28
Function
StrictModeDroppable
({ children, ...props }: DroppableProps)
frontend/src/components/StrictModeDroppable.tsx:4
Method
SystemController
(AppDbContext context)
backend/Controllers/SystemController.cs:16
Function
TaskDetailModal
({ opened, onClose, task, members, boardLabels, boardRole, onTaskUpdated }: TaskDetailModalProps)
frontend/src/components/TaskDetailModal.tsx:33
Method
TaskService
(AppDbContext db, INotificationService notificationService)
backend/Services/TaskService.cs:13
Method
TasksController
(ITaskService taskService, IHubContext<BoardHub> hubContext, IAutomationService automationService)
backend/Controllers/TasksController.cs:21
Method
TimeLogsController
(ITaskService taskService, IHubContext<BoardHub> hubContext)
backend/Controllers/TimeLogsController.cs:19
Method
ToggleReaction
(int activityId, [FromBody] ToggleReactionDto dto)
backend/Controllers/TasksController.cs:271
Method
ToggleReactionAsync
(int activityId, string emoji, int userId)
backend/Services/ITaskService.cs:24
Method
Up
<inheritdoc />
backend/Migrations/20260227044442_AddMissingUserFields.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260303022339_AddWorkspaceLogoFinal.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260216165215_AddBoardMembers.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260216180550_AddScrumFields.cs:12
Method
Up
<inheritdoc />
backend/Migrations/20260225153001_AddBoardInvites.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260226221934_AddBoardAutomations.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260223224513_AddCommentReactions.cs:12
Method
Up
<inheritdoc />
backend/Migrations/20260216180103_AddInvitationWorkflow.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260226214030_AddUserDisplayOfflineAlways.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260222151942_AnalyticsOptimization.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260219005358_AddActivityLog.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260219155014_AddAvatarUrlToUser.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260219224142_SyncModels.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260225175153_AddWorkspaceInvites.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260221145333_AddAttachmentsAndMultiAssignees.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260227011814_MandateWorkspaceForBoards.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260225005553_AddActivityIndexes.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260224212340_AddErDiagramToTaskCard.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260222231234_AddNotificationTable.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260224193245_AddOpenRouterApiKeyToUser.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260217191752_AddWorkspacesAndThemesFix.cs:13
Method
Up
<inheritdoc />
backend/Migrations/20260218222535_AddSubtasks.cs:12
Method
Up
<inheritdoc />
backend/Migrations/20260222145134_AddLabels.cs:12
Method
Up
<inheritdoc />
backend/Migrations/20260224153010_AddBoardIsClosed.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260217203741_AddWorkspaceMemberStatus.cs:11
Method
Up
<inheritdoc />
backend/Migrations/20260222153352_AddThemePreference.cs:11
Method
UpdateActivityAsync
(int activityId, string text, int userId)
backend/Services/ITaskService.cs:22
Method
UpdateBoard
(int id, [FromBody] UpdateBoardDto dto)
backend/Controllers/BoardsController.cs:141
Method
UpdateBoardAsync
(int boardId, UpdateBoardDto dto, int requesterId)
backend/Services/IBoardService.cs:15
Method
UpdateColumn
(int id, int columnId, [FromBody] UpdateColumnDto dto)
backend/Controllers/BoardsController.cs:254
Method
UpdateColumnAsync
(int boardId, int columnId, UpdateColumnDto dto, int userId)
backend/Services/IBoardService.cs:22
Method
UpdateComment
(int activityId, [FromBody] AddCommentDto dto)
backend/Controllers/TasksController.cs:249
Method
UpdateLabel
(int id, [FromBody] UpdateLabelDto dto)
backend/Controllers/LabelsController.cs:87
Method
UpdateMemberRole
PUT: api/workspaces/{id}/members/{userId}/role
backend/Controllers/WorkspacesController.cs:334
Method
UpdateProfile
── PUT /api/users/me ────────────────────────────────────────────────
backend/Controllers/UsersController.cs:82
Method
UpdateSubtask
(int subtaskId, [FromBody] UpdateSubtaskDto dto)
backend/Controllers/TasksController.cs:147
Method
UpdateSubtaskAsync
(int subtaskId, UpdateSubtaskDto dto, int userId)
backend/Services/ITaskService.cs:15
Method
UpdateTask
(int id, [FromBody] UpdateTaskDto dto)
backend/Controllers/TasksController.cs:46
Method
UpdateTaskAsync
(int taskId, UpdateTaskDto dto, int userId)
backend/Services/ITaskService.cs:9
← previous
next →
401–500 of 569, ranked by callers