debian-mirror-gitlab/doc/development/issuable-like-models.md

18 lines
611 B
Markdown
Raw Normal View History

2019-12-21 20:55:43 +05:30
# Issuable-like Rails models utilities
2020-01-01 13:55:28 +05:30
GitLab Rails codebase contains several models that hold common functionality and behave similarly to
2020-04-08 14:13:33 +05:30
[Issues](../user/project/issues/index.md). Other examples of "issuables"
are [Merge Requests](../user/project/merge_requests/index.md) and
[Epics](../user/group/epics/index.md).
2019-12-21 20:55:43 +05:30
This guide accumulates guidelines on working with such Rails models.
## Important text fields
There are max length constraints for the most important text fields for `Issuable`s:
- `title`: 255 chars
- `title_html`: 800 chars
- `description`: 1 megabyte
- `description_html`: 5 megabytes