Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
oshiro3 committed May 11, 2024
1 parent 07122ab commit 9a29459
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion app/controllers/profiles_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def checkin
end
end

def entry_sheet;end
def entry_sheet
end

helper_method :profile_url

Expand Down
2 changes: 1 addition & 1 deletion app/models/profile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def gen_calendar_unique_code
end

def qrcode_image
Base64.strict_encode64(RQRCode::QRCode.new([{ data: JSON.dump({profile_id: id}), mode: :byte_8bit }]).as_png.to_s)
Base64.strict_encode64(RQRCode::QRCode.new([{ data: JSON.dump({ profile_id: id }), mode: :byte_8bit }]).as_png.to_s)
end

def export_ics
Expand Down

0 comments on commit 9a29459

Please sign in to comment.