13 lines
302 B
Go
13 lines
302 B
Go
package organizationdb
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/tech/sendico/pkg/model"
|
|
"go.mongodb.org/mongo-driver/v2/bson"
|
|
)
|
|
|
|
func (db *OrganizationDB) GetByRef(ctx context.Context, organizationRef bson.ObjectID, org *model.Organization) error {
|
|
return db.Unprotected().Get(ctx, organizationRef, org)
|
|
}
|