Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Walker <bwalker@gitlab.com>2018-11-02 02:07:37 +0300
committerBrett Walker <bwalker@gitlab.com>2018-11-06 19:33:55 +0300
commit8c126525faba40032244328187ba73a53b6eaf4c (patch)
tree8ad62c67ea0cd29e0a4592083e759ba6b7383cdc /app/serializers/README.md
parentc6d4449f33b57a90d78b3f739ccecc5ab8588e96 (diff)
Extract code into IssueBoardEntity
Diffstat (limited to 'app/serializers/README.md')
-rw-r--r--app/serializers/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/serializers/README.md b/app/serializers/README.md
index 0337f88db5f..bb94745b0b5 100644
--- a/app/serializers/README.md
+++ b/app/serializers/README.md
@@ -180,7 +180,7 @@ def index
render json: MyResourceSerializer
.new(current_user: @current_user)
.represent_details(@project.resources)
- nd
+ end
end
```
@@ -196,7 +196,7 @@ def index
.represent_details(@project.resources),
count: @project.resources.count
}
- nd
+ end
end
```