Skip to content

Commit

Permalink
Update validation_service_mock.go
Browse files Browse the repository at this point in the history
  • Loading branch information
th0th committed Feb 9, 2025
1 parent 8d54f7a commit 07f7769
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backend/pkg/poeticmetric/validation_service_mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ func (m *ValidationServiceMock) ChangeUserPasswordParams(ctx context.Context, pa
return m.Called(ctx, params).Error(0)
}

func (m *ValidationServiceMock) CreateEventParams(ctx context.Context, params *CreateEventParams) error {
return m.Called(ctx, params).Error(0)
}

func (m *ValidationServiceMock) CreateOrganizationSiteParams(ctx context.Context, organizationID uint, params *CreateOrganizationSiteParams) error {
return m.Called(ctx, organizationID, params).Error(0)
}
Expand Down

0 comments on commit 07f7769

Please sign in to comment.