936cc820ab
* cleanup log levels * Standardize on model.IsErrNotFound instead of the mix of error checking done previously. * fix merge conflicts * fix comment typo * add description to asserts
20 lines
400 B
Go
20 lines
400 B
Go
package app
|
|
|
|
import (
|
|
"github.com/mattermost/focalboard/server/model"
|
|
)
|
|
|
|
func (a *App) GetSharing(boardID string) (*model.Sharing, error) {
|
|
sharing, err := a.store.GetSharing(boardID)
|
|
if model.IsErrNotFound(err) {
|
|
return nil, nil
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return sharing, nil
|
|
}
|
|
|
|
func (a *App) UpsertSharing(sharing model.Sharing) error {
|
|
return a.store.UpsertSharing(sharing)
|
|
}
|