Class: Dcm4chee::Api::V1::SeriesController
- Inherits:
-
BaseController
- Object
- ActionController::Base
- Dcm4chee::ApplicationController
- BaseController
- Dcm4chee::Api::V1::SeriesController
- Defined in:
- app/controllers/dcm4chee/api/v1/series_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
Restore a series from the trash.
-
#index ⇒ Object
Search for series.
Instance Method Details
#create ⇒ Object
Restore a series from the trash.
60 61 62 63 64 65 |
# File 'app/controllers/dcm4chee/api/v1/series_controller.rb', line 60 def create trashed_series = TrashedSeries.get!(params[:trashed_series_id]) trashed_series.restore_from_trash head :created end |
#index ⇒ Object
Search for series. Supported querying conditions:
study_id
Check DataMapper::Searcher::ClassMethods for supported querying operators.
42 43 44 45 46 |
# File 'app/controllers/dcm4chee/api/v1/series_controller.rb', line 42 def index series = Series.search(params[:q]) respond_with series: series end |