You've already forked focalboard
mirror of
https://github.com/mattermost/focalboard.git
synced 2025-07-12 23:50:27 +02:00
* comment only
* add getBlockHistoryNewestChildren store method
* fixed delete comment notify
* fix notification for content block deletion
* fix linter errors
* address review comments
---------
Co-authored-by: Mattermost Build <build@mattermost.com>
(cherry picked from commit c1c94e9794
)
Co-authored-by: Doug Lauder <wiggin77@warpmail.net>
This commit is contained in:
@ -11,15 +11,16 @@ import (
|
||||
type IDType byte
|
||||
|
||||
const (
|
||||
IDTypeNone IDType = '7'
|
||||
IDTypeTeam IDType = 't'
|
||||
IDTypeBoard IDType = 'b'
|
||||
IDTypeCard IDType = 'c'
|
||||
IDTypeView IDType = 'v'
|
||||
IDTypeSession IDType = 's'
|
||||
IDTypeUser IDType = 'u'
|
||||
IDTypeToken IDType = 'k'
|
||||
IDTypeBlock IDType = 'a'
|
||||
IDTypeNone IDType = '7'
|
||||
IDTypeTeam IDType = 't'
|
||||
IDTypeBoard IDType = 'b'
|
||||
IDTypeCard IDType = 'c'
|
||||
IDTypeView IDType = 'v'
|
||||
IDTypeSession IDType = 's'
|
||||
IDTypeUser IDType = 'u'
|
||||
IDTypeToken IDType = 'k'
|
||||
IDTypeBlock IDType = 'a'
|
||||
IDTypeAttachment IDType = 'i'
|
||||
)
|
||||
|
||||
// NewId is a globally unique identifier. It is a [A-Z0-9] string 27
|
||||
|
Reference in New Issue
Block a user