gitlab-org--gitlab-foss/doc/development/issuable-like-models.md

693 B

Issuable-like Rails models utilities

GitLab Rails codebase contains several models that hold common functionality and behave similarly to an Issue. Other examples of Issuables are Merge Requests and Epics.

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 Issuables:

  • title: 255 chars
  • title_html: 800 chars
  • description: 16000 chars
  • description_html: 48000 chars