Skip to content
This repository was archived by the owner on Feb 20, 2022. It is now read-only.

Commit 351e26a

Browse files
committed
update readme
1 parent 8290c61 commit 351e26a

File tree

5 files changed

+9
-1
lines changed

5 files changed

+9
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Ready to get going? Follow the [instructions for getting started](site/getting_
4141

4242
## Support and Community
4343

44-
OpenCSPM is undergoing active development and community assistance is available via the [OpenCSPM Slack Channel](https://join.slack.com/t/opencspm/shared_invite/zt-n4m2f9tw-taDWGa6OPBIBnsoj4zXsNw). If you have found an issue, please file it using a GitHub [issue](https://github.com/opencspm/opencspm/issues/new/choose).
44+
OpenCSPM is supported by community development. If you have found an issue, please file it using a GitHub [issue](https://github.com/opencspm/opencspm/issues/new/choose).
4545

4646
## Contributing
4747

docker/app/models/control.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class Control < ApplicationRecord
24
has_many :taggings, dependent: :destroy
35
has_many :tags, through: :taggings

docker/app/models/issue.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class Issue < ApplicationRecord
24
belongs_to :result
35
belongs_to :resource

docker/app/models/resource.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class Resource < ApplicationRecord
24
has_many :issues
35
has_many :results, through: :issues

docker/app/models/tag.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# frozen_string_literal: true
2+
13
class Tag < ApplicationRecord
24
has_many :taggings
35
has_many :controls, through: :taggings

0 commit comments

Comments
 (0)