Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mapping export format #429

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/controllers/api/v1/mappings_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def permitted_params
def with_instance
return Mapping.new if params[:id].blank?

@instance ||= current_organization.mappings.find(params[:id])
@instance ||= current_configuration_profile.mappings.find(params[:id])
rescue ActiveRecord::RecordNotFound
raise "Couldn't find mapping"
end
Expand Down
4 changes: 4 additions & 0 deletions app/models/mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ class Mapping < ApplicationRecord
has_one :mapping_predicates, through: :configuration_profile

has_many :alignments

has_many :predicates, through: :alignments

has_many :terms, source: :mapped_terms, through: :alignments
###
# @description: The selected terms from the original uploaded specification. The user can select one
# ore more terms from it.
Expand Down
Loading