-
Notifications
You must be signed in to change notification settings - Fork 4
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
Friends #184
Friends #184
Conversation
@@ -29,11 +29,37 @@ | |||
</button> | |||
<%= render 'dialog', profile: @profile %> | |||
</div> | |||
<% if @user.admin? %> |
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.
すみません仕様をよく分かっていないのですが、adminじゃないとQRコードを表示できない仕様でしょうか?
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.
すみません、説明不足でした!!!
これはリリースをRubyKaigiDay0に合わせたいなと思って塞いでいます、Day0の日にこのコミットをRevertして全員に使えるようにしようと思います
[nice to have] |
<div class="flex flex-wrap ml-6 mb-4"> | ||
<% @user.profile.friend_profiles.each do |profile| %> | ||
<% if @friends_schedules_map[profile.id].include?(row.tracks[track].id) %> | ||
<img src="<%= profile.avatar_url %>" class="h-8 w-8 rounded-full border-2 border-black mt-[-4px] ml-[-16px] mt-1" /> |
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.
モバイルだとスケジュールに友達のアイコンが表示されませんでした。これから対応予定でしたらすみません🙏
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.
モバイルの存在忘れてました
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.
モバイル対応はこのPRでやります?
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.
別PRでやります
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.
LGTM!
Friends
Implementation of friends feature.