mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-06-04 14:15:59 +00:00
Run scalafmtAll
This commit is contained in:
parent
9ffa29459d
commit
7609b2b7c3
@ -86,7 +86,8 @@ object OUpload {
|
|||||||
def noSource: UploadResult = NoSource
|
def noSource: UploadResult = NoSource
|
||||||
|
|
||||||
/** When adding files to an item, no item was found using the given
|
/** When adding files to an item, no item was found using the given
|
||||||
* item-id. */
|
* item-id.
|
||||||
|
*/
|
||||||
case object NoItem extends UploadResult
|
case object NoItem extends UploadResult
|
||||||
|
|
||||||
def noItem: UploadResult = NoItem
|
def noItem: UploadResult = NoItem
|
||||||
|
@ -11,14 +11,16 @@ object CollectiveState {
|
|||||||
|
|
||||||
/** A collective may be readonly in cases it is implicitly closed
|
/** A collective may be readonly in cases it is implicitly closed
|
||||||
* (e.g. no payment). Users can still see there data and
|
* (e.g. no payment). Users can still see there data and
|
||||||
* download, but have no write access. */
|
* download, but have no write access.
|
||||||
|
*/
|
||||||
case object ReadOnly extends CollectiveState
|
case object ReadOnly extends CollectiveState
|
||||||
|
|
||||||
/** A collective that has been explicitely closed. */
|
/** A collective that has been explicitely closed. */
|
||||||
case object Closed extends CollectiveState
|
case object Closed extends CollectiveState
|
||||||
|
|
||||||
/** A collective blocked by a super user, usually some emergency
|
/** A collective blocked by a super user, usually some emergency
|
||||||
* action. */
|
* action.
|
||||||
|
*/
|
||||||
case object Blocked extends CollectiveState
|
case object Blocked extends CollectiveState
|
||||||
|
|
||||||
def fromString(s: String): Either[String, CollectiveState] =
|
def fromString(s: String): Either[String, CollectiveState] =
|
||||||
|
@ -13,7 +13,8 @@ object JobState {
|
|||||||
case object Waiting extends JobState {}
|
case object Waiting extends JobState {}
|
||||||
|
|
||||||
/** A scheduler has picked up this job and will pass it to the next
|
/** A scheduler has picked up this job and will pass it to the next
|
||||||
* free slot. */
|
* free slot.
|
||||||
|
*/
|
||||||
case object Scheduled extends JobState {}
|
case object Scheduled extends JobState {}
|
||||||
|
|
||||||
/** Is currently executing */
|
/** Is currently executing */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user