You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
424 B
17 lines
424 B
6 years ago
|
|
||
|
class ProjectingSoftapplication < ActiveRecord::Base
|
||
|
attr_accessible :project_id, :softapplication_id, :user_id
|
||
|
|
||
|
belongs_to :project
|
||
|
belongs_to :softapplication
|
||
|
belongs_to :user
|
||
|
|
||
|
|
||
|
def self.create_softapplication_projecting(project_id, softapplication_id)
|
||
|
self.create(:user_id => User.current.id, :project_id => project_id,
|
||
|
:softapplication_id => softapplication_id)
|
||
|
end
|
||
|
|
||
|
|
||
|
end
|