bluesky initial impl

This commit is contained in:
Dylan Knutson
2025-08-05 18:08:48 +00:00
parent 6b8fce7ddc
commit e9f3b0e822
18 changed files with 10293 additions and 6 deletions

View File

@@ -46,6 +46,7 @@ class ApplicationController
include ::FaUriHelper
include ::GoodJobHelper
include ::IpAddressHelper
include ::TelegramBotLogsHelper
include ::TimestampHelper
include ::UiHelper
include ::DeviseHelper

View File

@@ -43,6 +43,7 @@ class DeviseController
include ::FaUriHelper
include ::GoodJobHelper
include ::IpAddressHelper
include ::TelegramBotLogsHelper
include ::TimestampHelper
include ::UiHelper
include ::DeviseHelper

2732
sorbet/rbi/dsl/domain/post/bluesky_post.rbi generated Normal file

File diff suppressed because it is too large Load Diff

2763
sorbet/rbi/dsl/domain/user/bluesky_user.rbi generated Normal file

File diff suppressed because it is too large Load Diff

2225
sorbet/rbi/dsl/domain_posts_bluesky_aux.rbi generated Normal file

File diff suppressed because it is too large Load Diff

1989
sorbet/rbi/dsl/domain_users_bluesky_aux.rbi generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -46,6 +46,7 @@ class Rails::ApplicationController
include ::FaUriHelper
include ::GoodJobHelper
include ::IpAddressHelper
include ::TelegramBotLogsHelper
include ::TimestampHelper
include ::UiHelper
include ::DeviseHelper

View File

@@ -46,6 +46,7 @@ class Rails::Conductor::BaseController
include ::FaUriHelper
include ::GoodJobHelper
include ::IpAddressHelper
include ::TelegramBotLogsHelper
include ::TimestampHelper
include ::UiHelper
include ::DeviseHelper

View File

@@ -46,6 +46,7 @@ class Rails::HealthController
include ::FaUriHelper
include ::GoodJobHelper
include ::IpAddressHelper
include ::TelegramBotLogsHelper
include ::TimestampHelper
include ::UiHelper
include ::DeviseHelper

View File

@@ -407,10 +407,10 @@ class TelegramBotLog
def status_invalid_image?; end
sig { void }
def status_no_results!; end
def status_processing!; end
sig { returns(T::Boolean) }
def status_no_results?; end
def status_processing?; end
sig { void }
def status_success!; end
@@ -534,7 +534,7 @@ class TelegramBotLog
def not_status_invalid_image(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateAssociationRelation) }
def not_status_no_results(*args, &blk); end
def not_status_processing(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateAssociationRelation) }
def not_status_success(*args, &blk); end
@@ -606,6 +606,9 @@ class TelegramBotLog
end
def select(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateAssociationRelation) }
def slow_requests(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateAssociationRelation) }
def status_error(*args, &blk); end
@@ -613,7 +616,7 @@ class TelegramBotLog
def status_invalid_image(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateAssociationRelation) }
def status_no_results(*args, &blk); end
def status_processing(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateAssociationRelation) }
def status_success(*args, &blk); end
@@ -1923,7 +1926,7 @@ class TelegramBotLog
def not_status_invalid_image(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateRelation) }
def not_status_no_results(*args, &blk); end
def not_status_processing(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateRelation) }
def not_status_success(*args, &blk); end
@@ -1995,6 +1998,9 @@ class TelegramBotLog
end
def select(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateRelation) }
def slow_requests(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateRelation) }
def status_error(*args, &blk); end
@@ -2002,7 +2008,7 @@ class TelegramBotLog
def status_invalid_image(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateRelation) }
def status_no_results(*args, &blk); end
def status_processing(*args, &blk); end
sig { params(args: T.untyped, blk: T.untyped).returns(PrivateRelation) }
def status_success(*args, &blk); end