-
Notifications
You must be signed in to change notification settings - Fork 124
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
[WIP] Valkyrie #1777
[WIP] Valkyrie #1777
Conversation
e69fc02
to
c85a2e1
Compare
@@ -58,6 +56,16 @@ def apply_order(curation_concern, new_order) | |||
curation_concern.list_source.order_will_change! | |||
true | |||
end | |||
|
|||
def find_resource(id) | |||
query_service.find_by(id: Valkyrie::ID.new(id.to_s)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks like Valkyrie
should be responsible for casting the given id to a Valkyrie:ID
. This method does not know that the given query_service is Valkyrie. As such I believe the find_by
method in Valkyrie should be responsible for casting to an id.
Adjust the DynamicChangeSet to namespace for Hyrax classes
Refactor count queries away from ActiveFedora::Relation
…into ProxyDepositRequest
Works controller now uses change sets rather than actors
Remove the namespacing from the Change Set
Persist instead of save
Add a CollectionChangeSetPersister
Restore attributes for thumbnail and representative
Convert batch forms to ChangeSets
…ates the need for most of the accompanying CSS.
Merge master
.dropdown-toggle:focus { | ||
outline: 2px auto Highlight; // FireFox | ||
outline: 5px auto -webkit-focus-ring-color; // Chrome, Safari | ||
outline: -2px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Property outline
already defined on line 25
|
||
.dropdown-toggle:focus { | ||
outline: 2px auto Highlight; // FireFox | ||
outline: 5px auto -webkit-focus-ring-color; // Chrome, Safari |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Property outline
already defined on line 25
@@ -20,6 +20,10 @@ legend small { | |||
} | |||
} | |||
|
|||
#savewidget a { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid using id selectors
.dropdown-toggle:focus { | ||
outline: 2px auto Highlight; // FireFox | ||
outline: 5px auto -webkit-focus-ring-color; // Chrome, Safari | ||
outline: -2px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Property outline
already defined on line 25
|
||
.dropdown-toggle:focus { | ||
outline: 2px auto Highlight; // FireFox | ||
outline: 5px auto -webkit-focus-ring-color; // Chrome, Safari |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Property outline
already defined on line 25
@@ -20,6 +20,10 @@ legend small { | |||
} | |||
} | |||
|
|||
#savewidget a { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid using id selectors
Got rid of two views by moving the code to the CollectionsHelper too.
Restore the routing for the BatchUploadChangeSet
Reset permissions via the attributes on work
Use thumbnail_id rather than thumbnail
Pass change_set to views
Cast strings to Valkyrie identifiers
Restore the stubbing of the actor in the WorksController spec
Remove autocreate_fields! it makes it impossible to set required fields
Actor returns the resource on successful update
…2166) include ... order doesn't matter; added 'import_url' foo
Closing this in favor of #2178 |
No description provided.