-
Notifications
You must be signed in to change notification settings - Fork 47
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
68-rola-autora #361
base: master
Are you sure you want to change the base?
68-rola-autora #361
Conversation
To ma być atrybut w |
@chibika Czy potrzebne są jeszcze jakieś wyjaśnienia? Bo zadanie wymaga jeszcze sporo pracy. |
Czy tak to ma wyglądać w bazie danych? Poza tym muszę dodać pole i tooltip w formularzu i dodać wyświetlanie tego pola w widokach - czy coś jeszcze (poza testami oczywiście)? Jaka ma być treść tego tooltipa? |
@@ -1,6 +1,7 @@ | |||
class Authorship < ActiveRecord::Base | |||
validates :person, presence: true, uniqueness: { scope: :submission_id } | |||
|
|||
validates :author_role, presence: true |
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.
wystarczyłoby role
To pole powinno pojawić się w formularzu dodawania autora. W widoku zgłoszeń jest guzik - dodaj autora i po jego kliknięciu powinna być możliwość określenia "roli". Trzeba zmodyfikować widok |
Powinno być |
teraz widzę że muszę poprawić testy, no i update'ować |
Prościej będzie usunąć wymóg dotyczący roli autora - to się zrobi w osobnym zadaniu. |
@@ -1,6 +1,6 @@ | |||
class Authorship < ActiveRecord::Base | |||
validates :person, presence: true, uniqueness: { scope: :submission_id } | |||
|
|||
validates :role, presence: true |
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.
Proszę to usunąć - to rozwiąże problem testów.
Nie wymagam dodatkowego testu do tego zadania. Po updacie względme mastera będę mergował. |
Jeszcze nie zaczęłam, czy mógłby mi Pan jeszcze raz wyjaśnić jak rola autora ma być przyporządkowana do powiązania autora z danym artykułem? Teraz zrobiłam ją po prostu jako jeden z atrybutów zgłoszenia, ale to chyba ma być jakoś inaczej?
#68