Updated GabTrendsController, ShopController to use Request instead of Net

• Updated:
- GabTrendsController, ShopController to use Request instead of Net
This commit is contained in:
mgabdev
2020-07-07 16:01:51 -05:00
parent 2ae611d7ed
commit 0fdf762815
5 changed files with 88 additions and 23 deletions

16
app/models/shortcut.rb Normal file
View File

@@ -0,0 +1,16 @@
# frozen_string_literal: true
# == Schema Information
#
# Table name: shortcuts
#
# id :bigint(8) not null, primary key
# account_id :bigint(8) not null
# shortcut_id :bigint(8) not null
# shortcut_type :string not null
# created_at :datetime not null
# updated_at :datetime
#
class Shortcut < ApplicationRecord
end