Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
ScrumBoard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Developer Tooling
ScrumBoard
Commits
939a6966
Commit
939a6966
authored
12 years ago
by
Florian Fittkau
Browse files
Options
Downloads
Patches
Plain Diff
now running again
parent
f4f2f96d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
grails-app/conf/BootStrap.groovy
+3
-0
3 additions, 0 deletions
grails-app/conf/BootStrap.groovy
grails-app/domain/scrumboard/Color.groovy
+2
-0
2 additions, 0 deletions
grails-app/domain/scrumboard/Color.groovy
with
5 additions
and
0 deletions
grails-app/conf/BootStrap.groovy
+
3
−
0
View file @
939a6966
import
org.apache.shiro.crypto.hash.Sha256Hash
import
org.apache.shiro.crypto.hash.Sha256Hash
import
scrumboard.Color
import
scrumboard.ProductBacklog
import
scrumboard.ProductBacklog
import
scrumboard.Project
import
scrumboard.Project
import
scrumboard.Sprint
import
scrumboard.Sprint
...
@@ -50,6 +51,7 @@ class BootStrap {
...
@@ -50,6 +51,7 @@ class BootStrap {
userStoryInBacklog
.
author
=
ffi
userStoryInBacklog
.
author
=
ffi
userStoryInBacklog
.
editor
=
ffi
userStoryInBacklog
.
editor
=
ffi
userStoryInBacklog
.
points
=
3
userStoryInBacklog
.
points
=
3
userStoryInBacklog
.
color
=
new
Color
(
250
,
60
,
0
)
userStoryInBacklog
.
save
(
failOnError:
true
)
userStoryInBacklog
.
save
(
failOnError:
true
)
...
@@ -69,6 +71,7 @@ class BootStrap {
...
@@ -69,6 +71,7 @@ class BootStrap {
userStoryInSprint
.
editor
=
ffi
userStoryInSprint
.
editor
=
ffi
userStoryInSprint
.
points
=
2
userStoryInSprint
.
points
=
2
userStoryInSprint
.
status
=
UserStoryStatus
.
OPEN
userStoryInSprint
.
status
=
UserStoryStatus
.
OPEN
userStoryInSprint
.
color
=
new
Color
(
250
,
180
,
0
)
userStoryInSprint
.
save
(
failOnError:
true
)
userStoryInSprint
.
save
(
failOnError:
true
)
...
...
This diff is collapsed.
Click to expand it.
grails-app/domain/scrumboard/Color.groovy
+
2
−
0
View file @
939a6966
...
@@ -12,6 +12,8 @@ class Color {
...
@@ -12,6 +12,8 @@ class Color {
blue
min:
0
,
max:
255
blue
min:
0
,
max:
255
}
}
static
belongsTo
=
UserStory
Color
(
red
,
green
,
blue
)
{
Color
(
red
,
green
,
blue
)
{
this
.
red
=
red
this
.
red
=
red
this
.
green
=
green
this
.
green
=
green
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment