Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6a14e78
removing scope from model extensions
sabrine33 Oct 24, 2025
a21e200
Merge remote-tracking branch 'origin/develop' into Y25-485-remove-mod…
sabrine33 Nov 7, 2025
f8ca1a1
fixed rspec : BulkSubmissionExcel - sample_manifest_excel
sabrine33 Nov 7, 2025
ac7b1c5
revert database.yml
sabrine33 Nov 7, 2025
e2a626f
remove feature/api tests (linked to api v1)
sabrine33 Nov 7, 2025
0bdc65a
fix features
sabrine33 Nov 14, 2025
1e80498
putting back api/core folder as not related to API v1
sabrine33 Nov 14, 2025
d4eea54
putting back api/core folder as not related to API v1
sabrine33 Nov 14, 2025
a58f1d6
mistake
sabrine33 Nov 14, 2025
3ca5c8a
Merge branch 'develop' into Y25-485-remove-model-extensions
StephenHulme Nov 28, 2025
be5a634
style: lint
StephenHulme Nov 28, 2025
818def9
removing missing model extension includes
StephenHulme Nov 28, 2025
5058cdf
refactor ReadOnlyAttribute to inherit from StandardError
StephenHulme Nov 28, 2025
d3e0a54
Merge remote-tracking branch 'origin/develop' into Y25-485-remove-mod…
sabrine33 Dec 12, 2025
898f870
delete api.rb file
sabrine33 Dec 12, 2025
905d9ff
Merge remote-tracking branch 'origin/develop' into Y25-485-remove-mod…
sabrine33 Jan 9, 2026
4c3e5a6
remove old/migrated feature tests
sabrine33 Jan 9, 2026
a9399ab
order asset
sabrine33 Jan 20, 2026
6403a1b
Merge branch 'develop' into Y25-485-remove-model-extensions
StephenHulme Jan 23, 2026
0e91aa4
test: try fix failing orders tests
StephenHulme Feb 4, 2026
960d4ac
test: fix spec/features/submissions/bulk_submissions_spec.rb
StephenHulme Feb 4, 2026
3db17ca
Merge branch 'develop' into Y25-485-remove-model-extensions
StephenHulme Feb 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
197 changes: 0 additions & 197 deletions app/api/core/abilities.rb

This file was deleted.

12 changes: 0 additions & 12 deletions app/api/core/benchmarking.rb

This file was deleted.

112 changes: 0 additions & 112 deletions app/api/core/endpoint/base.rb

This file was deleted.

2 changes: 1 addition & 1 deletion app/api/core/endpoint/basic_handler/actions.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def self.included(base)
include Core::Endpoint::BasicHandler::Actions::Factory
include Core::Endpoint::BasicHandler::Actions::Guards
include Core::Endpoint::BasicHandler::EndpointLookup
include Core::Abilities::ActionBehaviour
# include Core::Abilities::ActionBehaviour
end
end

Expand Down
44 changes: 0 additions & 44 deletions app/api/core/initializable.rb

This file was deleted.

2 changes: 0 additions & 2 deletions app/api/core/io/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
# end
#
class Core::Io::Base
extend ::Core::Logging
extend ::Core::Benchmarking
extend ::Core::Io::Base::EagerLoadingBehaviour
extend ::Core::Io::Base::JsonFormattingBehaviour

Expand Down
2 changes: 1 addition & 1 deletion app/api/core/io/base/json_formatting_behaviour/input.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# frozen_string_literal: true

module Core::Io::Base::JsonFormattingBehaviour::Input
class ReadOnlyAttribute < ::Core::Service::Error
class ReadOnlyAttribute < StandardError
def initialize(attribute)
super('is read-only')
@attribute = attribute
Expand Down
Loading
Loading