-
Notifications
You must be signed in to change notification settings - Fork 0
/
TAGS
950 lines (831 loc) · 33.3 KB
/
TAGS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
lib/application_responder.rb,82
class ApplicationResponder < ActionController::ResponderApplicationResponder3,0
config/application.rb,144
module PaulPaul23,0
class Application < Rails::ApplicationApplication24,0
class Application < Rails::ApplicationPaul::Application24,0
config/initializers/verifalia.rb,72
module VerifaliaConfigVerifaliaConfig5,0
def self.clientclient6,0
config/initializers/rack_attack.rb,79
module RackRack3,0
class AttackAttack4,0
class AttackRack::Attack4,0
app/models/room.rb,189
class Room < ApplicationRecordRoom18,0
has_many :messagesmessages19,0
has_many :messagesmessages=19,0
has_many :messagesmessage_ids19,0
has_many :messagesmessage_ids=19,0
app/models/vestry_minute.rb,57
class VestryMinute < ApplicationRecordVestryMinute16,0
app/models/survey.rb,212
class Survey < ApplicationRecordSurvey21,0
belongs_to :useruser22,0
belongs_to :useruser=22,0
belongs_to :userbuild_user22,0
belongs_to :usercreate_user22,0
belongs_to :usercreate_user!22,0
app/models/ens_feed.rb,104
class EnsFeed < ApplicationRecordEnsFeed18,0
def update_from_feed(feed_url)update_from_feed20,0
app/models/application_record.rb,67
class ApplicationRecord < ActiveRecord::BaseApplicationRecord4,0
app/models/donation.rb,288
class Donation < ApplicationRecordDonation20,0
belongs_to :useruser21,0
belongs_to :useruser=21,0
belongs_to :userbuild_user21,0
belongs_to :usercreate_user21,0
belongs_to :usercreate_user!21,0
def set_amountset_amount26,0
def set_stripe_idset_stripe_id32,0
app/models/sermon.rb,252
class Sermon < ApplicationRecordSermon19,0
belongs_to :homilisthomilist21,0
belongs_to :homilisthomilist=21,0
belongs_to :homilistbuild_homilist21,0
belongs_to :homilistcreate_homilist21,0
belongs_to :homilistcreate_homilist!21,0
app/models/pathway.rb,47
class Pathway < ApplicationRecordPathway16,0
app/models/opportunity.rb,222
class Opportunity < ApplicationRecordOpportunity19,0
belongs_to :useruser20,0
belongs_to :useruser=20,0
belongs_to :userbuild_user20,0
belongs_to :usercreate_user20,0
belongs_to :usercreate_user!20,0
app/models/story_assignment.rb,395
class StoryAssignment < ApplicationRecordStoryAssignment15,0
belongs_to :story_idea, dependent: :destroystory_idea16,0
belongs_to :story_idea, dependent: :destroystory_idea=16,0
belongs_to :story_idea, dependent: :destroybuild_story_idea16,0
belongs_to :story_idea, dependent: :destroycreate_story_idea16,0
belongs_to :story_idea, dependent: :destroycreate_story_idea!16,0
app/models/profile.rb,214
class Profile < ApplicationRecordProfile21,0
belongs_to :useruser22,0
belongs_to :useruser=22,0
belongs_to :userbuild_user22,0
belongs_to :usercreate_user22,0
belongs_to :usercreate_user!22,0
app/models/story_idea.rb,522
class StoryIdea < ApplicationRecordStoryIdea19,0
belongs_to :useruser20,0
belongs_to :useruser=20,0
belongs_to :userbuild_user20,0
belongs_to :usercreate_user20,0
belongs_to :usercreate_user!20,0
has_many :comments, as: :commentable, dependent: :destroycomments21,0
has_many :comments, as: :commentable, dependent: :destroycomments=21,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids21,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids=21,0
app/models/role.rb,220
class Role < ApplicationRecordRole4,0
has_and_belongs_to_many :usersusers5,0
has_and_belongs_to_many :usersusers=5,0
has_and_belongs_to_many :usersuser_ids5,0
has_and_belongs_to_many :usersuser_ids=5,0
app/models/task.rb,41
class Task < ApplicationRecordTask17,0
app/models/user.rb,2985
class User < ApplicationRecordUser33,0
has_many :posts, dependent: :destroyposts42,0
has_many :posts, dependent: :destroyposts=42,0
has_many :posts, dependent: :destroypost_ids42,0
has_many :posts, dependent: :destroypost_ids=42,0
has_many :comments, as: :commentable, dependent: :destroycomments43,0
has_many :comments, as: :commentable, dependent: :destroycomments=43,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids43,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids=43,0
has_one :profile, dependent: :destroyprofile44,0
has_one :profile, dependent: :destroyprofile=44,0
has_one :profile, dependent: :destroybuild_profile44,0
has_one :profile, dependent: :destroycreate_profile44,0
has_one :profile, dependent: :destroycreate_profile!44,0
has_many :opportunities, dependent: :destroyopportunities46,0
has_many :opportunities, dependent: :destroyopportunities=46,0
has_many :opportunities, dependent: :destroyopportunitie_ids46,0
has_many :opportunities, dependent: :destroyopportunitie_ids=46,0
has_many :story_ideas, dependent: :destroystory_ideas47,0
has_many :story_ideas, dependent: :destroystory_ideas=47,0
has_many :story_ideas, dependent: :destroystory_idea_ids47,0
has_many :story_ideas, dependent: :destroystory_idea_ids=47,0
has_many :todo_liststodo_lists48,0
has_many :todo_liststodo_lists=48,0
has_many :todo_liststodo_list_ids48,0
has_many :todo_liststodo_list_ids=48,0
has_many :vnotes, dependent: :destroyvnotes50,0
has_many :vnotes, dependent: :destroyvnotes=50,0
has_many :vnotes, dependent: :destroyvnote_ids50,0
has_many :vnotes, dependent: :destroyvnote_ids=50,0
has_many :agendasagendas51,0
has_many :agendasagendas=51,0
has_many :agendasagenda_ids51,0
has_many :agendasagenda_ids=51,0
has_one :pledge, dependent: :destroypledge54,0
has_one :pledge, dependent: :destroypledge=54,0
has_one :pledge, dependent: :destroybuild_pledge54,0
has_one :pledge, dependent: :destroycreate_pledge54,0
has_one :pledge, dependent: :destroycreate_pledge!54,0
has_many :donations, dependent: :destroydonations55,0
has_many :donations, dependent: :destroydonations=55,0
has_many :donations, dependent: :destroydonation_ids55,0
has_many :donations, dependent: :destroydonation_ids=55,0
ROLES = %w[member vestry communicator admin].freezeROLES57,0
ROLES = %w[member vestry communicator admin].freezeUser::ROLES57,0
def add_role(role)add_role59,0
def remove_role(role)remove_role63,0
def role?(role)role?67,0
def set_default_roleset_default_role73,0
def cancel_stripe_customercancel_stripe_customer91,0
def add_profileadd_profile95,0
attr_writer :loginlogin=99,0
def loginlogin101,0
def self.find_for_database_authentication(warden_conditions)find_for_database_authentication105,0
def set_usernameset_username115,0
app/models/meditation.rb,53
class Meditation < ApplicationRecordMeditation20,0
app/models/pray_for.rb,47
class PrayFor < ApplicationRecordPrayFor16,0
app/models/member.rb,154
class Member < ApplicationRecordMember21,0
def set_usernameset_username28,0
def set_ydayset_yday32,0
def formatted_emailformatted_email36,0
app/models/story.rb,210
class Story < ApplicationRecordStory15,0
belongs_to :useruser16,0
belongs_to :useruser=16,0
belongs_to :userbuild_user16,0
belongs_to :usercreate_user16,0
belongs_to :usercreate_user!16,0
app/models/plan.rb,41
class Plan < ApplicationRecordPlan17,0
app/models/agenda_item.rb,240
class AgendaItem < ApplicationRecordAgendaItem15,0
belongs_to :agendaagenda16,0
belongs_to :agendaagenda=16,0
belongs_to :agendabuild_agenda16,0
belongs_to :agendacreate_agenda16,0
belongs_to :agendacreate_agenda!16,0
app/models/comment.rb,1177
class Comment < ApplicationRecordComment18,0
belongs_to :useruser19,0
belongs_to :useruser=19,0
belongs_to :userbuild_user19,0
belongs_to :usercreate_user19,0
belongs_to :usercreate_user!19,0
belongs_to :commentable, polymorphic: truecommentable20,0
belongs_to :commentable, polymorphic: truecommentable=20,0
belongs_to :commentable, polymorphic: truebuild_commentable20,0
belongs_to :commentable, polymorphic: truecreate_commentable20,0
belongs_to :commentable, polymorphic: truecreate_commentable!20,0
belongs_to :parent, optional: true, class_name: 'Comment'parent21,0
belongs_to :parent, optional: true, class_name: 'Comment'parent=21,0
belongs_to :parent, optional: true, class_name: 'Comment'build_parent21,0
belongs_to :parent, optional: true, class_name: 'Comment'create_parent21,0
belongs_to :parent, optional: true, class_name: 'Comment'create_parent!21,0
has_many :comments, as: :commentablecomments22,0
has_many :comments, as: :commentablecomments=22,0
has_many :comments, as: :commentablecomment_ids22,0
has_many :comments, as: :commentablecomment_ids=22,0
def commentscomments25,0
app/models/letter/import.rb,360
module LetterLetter4,0
class ImportImport5,0
class ImportLetter::Import5,0
attr_accessor :file, :imported_countfile7,0
attr_accessor :file, :imported_countfile=7,0
attr_accessor :file, :imported_countimported_count7,0
attr_accessor :file, :imported_countimported_count=7,0
def process!process!9,0
def savesave23,0
app/models/webhook.rb,47
class Webhook < ApplicationRecordWebhook16,0
app/models/book.rb,41
class Book < ApplicationRecordBook21,0
app/models/todo_list.rb,380
class TodoList < ApplicationRecordTodoList15,0
belongs_to :useruser16,0
belongs_to :useruser=16,0
belongs_to :userbuild_user16,0
belongs_to :usercreate_user16,0
belongs_to :usercreate_user!16,0
has_many :todo_itemstodo_items17,0
has_many :todo_itemstodo_items=17,0
has_many :todo_itemstodo_item_ids17,0
has_many :todo_itemstodo_item_ids=17,0
app/models/pledge.rb,312
class Pledge < ApplicationRecordPledge20,0
belongs_to :useruser21,0
belongs_to :useruser=21,0
belongs_to :userbuild_user21,0
belongs_to :usercreate_user21,0
belongs_to :usercreate_user!21,0
def set_plan_idset_plan_id27,0
def cancel_stripe_subscriptioncancel_stripe_subscription39,0
app/models/vnote.rb,514
class Vnote < ApplicationRecordVnote15,0
belongs_to :useruser16,0
belongs_to :useruser=16,0
belongs_to :userbuild_user16,0
belongs_to :usercreate_user16,0
belongs_to :usercreate_user!16,0
has_many :comments, as: :commentable, dependent: :destroycomments17,0
has_many :comments, as: :commentable, dependent: :destroycomments=17,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids17,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids=17,0
app/models/event.rb,183
class Event < ApplicationRecordEvent21,0
has_many :ticketstickets22,0
has_many :ticketstickets=22,0
has_many :ticketsticket_ids22,0
has_many :ticketsticket_ids=22,0
app/models/todo_item.rb,371
class TodoItem < ApplicationRecordTodoItem17,0
belongs_to :todo_list, dependent: :destroytodo_list18,0
belongs_to :todo_list, dependent: :destroytodo_list=18,0
belongs_to :todo_list, dependent: :destroybuild_todo_list18,0
belongs_to :todo_list, dependent: :destroycreate_todo_list18,0
belongs_to :todo_list, dependent: :destroycreate_todo_list!18,0
app/models/marriage_talk.rb,57
class MarriageTalk < ApplicationRecordMarriageTalk16,0
app/models/formation_talk.rb,59
class FormationTalk < ApplicationRecordFormationTalk16,0
app/models/homilist.rb,189
class Homilist < ApplicationRecordHomilist16,0
has_many :sermonssermons17,0
has_many :sermonssermons=17,0
has_many :sermonssermon_ids17,0
has_many :sermonssermon_ids=17,0
app/models/post.rb,561
class Post < ApplicationRecordPost14,0
belongs_to :useruser15,0
belongs_to :useruser=15,0
belongs_to :userbuild_user15,0
belongs_to :usercreate_user15,0
belongs_to :usercreate_user!15,0
has_many :comments, as: :commentable, dependent: :destroycomments16,0
has_many :comments, as: :commentable, dependent: :destroycomments=16,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids16,0
has_many :comments, as: :commentable, dependent: :destroycomment_ids=16,0
def image_as_thumbnailimage_as_thumbnail25,0
app/models/stripe_report.rb,856
class StripeReport < ApplicationRecordStripeReport20,0
belongs_to :useruser21,0
belongs_to :useruser=21,0
belongs_to :userbuild_user21,0
belongs_to :usercreate_user21,0
belongs_to :usercreate_user!21,0
belongs_to :pledge, optional: truepledge22,0
belongs_to :pledge, optional: truepledge=22,0
belongs_to :pledge, optional: truebuild_pledge22,0
belongs_to :pledge, optional: truecreate_pledge22,0
belongs_to :pledge, optional: truecreate_pledge!22,0
belongs_to :donation, optional: truedonation23,0
belongs_to :donation, optional: truedonation=23,0
belongs_to :donation, optional: truebuild_donation23,0
belongs_to :donation, optional: truecreate_donation23,0
belongs_to :donation, optional: truecreate_donation!23,0
def calculate_feecalculate_fee27,0
def calculate_netcalculate_net32,0
app/models/link.rb,41
class Link < ApplicationRecordLink17,0
app/models/ticket.rb,294
class Ticket < ApplicationRecordTicket24,0
belongs_to :eventevent25,0
belongs_to :eventevent=25,0
belongs_to :eventbuild_event25,0
belongs_to :eventcreate_event25,0
belongs_to :eventcreate_event!25,0
def set_amountset_amount32,0
def set_stripe_idset_stripe_id36,0
app/models/anniversary.rb,55
class Anniversary < ApplicationRecordAnniversary17,0
app/models/agenda.rb,560
class Agenda < ApplicationRecordAgenda14,0
has_many :agenda_items, inverse_of: :agenda, dependent: :destroyagenda_items15,0
has_many :agenda_items, inverse_of: :agenda, dependent: :destroyagenda_items=15,0
has_many :agenda_items, inverse_of: :agenda, dependent: :destroyagenda_item_ids15,0
has_many :agenda_items, inverse_of: :agenda, dependent: :destroyagenda_item_ids=15,0
belongs_to :useruser18,0
belongs_to :useruser=18,0
belongs_to :userbuild_user18,0
belongs_to :usercreate_user18,0
belongs_to :usercreate_user!18,0
app/mailers/vnote_mailer.rb,99
class VnoteMailer < ApplicationMailerVnoteMailer4,0
def vnote_created(vnote)vnote_created5,0
app/mailers/story_idea_mailer.rb,122
class StoryIdeaMailer < ApplicationMailerStoryIdeaMailer4,0
def story_idea_created(story_idea)story_idea_created7,0
app/mailers/post_mailer.rb,94
class PostMailer < ApplicationMailerPostMailer4,0
def post_created(post)post_created7,0
app/mailers/ticket_mailer.rb,88
class TicketMailer < ApplicationMailerTicketMailer4,0
def thanks(ticket)thanks5,0
app/mailers/comment_mailer.rb,151
class CommentMailer < ApplicationMailerCommentMailer4,0
def new_comment(comment)new_comment5,0
def get_recipients(comment)get_recipients16,0
app/mailers/member_mailer.rb,57
class MemberMailer < ApplicationMailerMemberMailer10,0
app/mailers/invite_mailer.rb,111
class InviteMailer < Devise::MailerInviteMailer4,0
def invitation_instructionsinvitation_instructions7,0
app/mailers/application_mailer.rb,68
class ApplicationMailer < ActionMailer::BaseApplicationMailer10,0
app/mailers/welcome_mailer.rb,102
class WelcomeMailer < ApplicationMailerWelcomeMailer4,0
def welcome_email(user)welcome_email5,0
app/mailers/minutes_mailer.rb,119
class MinutesMailer < ApplicationMailerMinutesMailer4,0
def new_minutes_email(vestry_minute)new_minutes_email5,0
app/mailers/stripe_mailer.rb,111
class StripeMailer < ApplicationMailerStripeMailer4,0
def report_created(stripe_report)report_created5,0
app/mailers/test_mailer.rb,78
class TestMailer < ApplicationMailerTestMailer4,0
def testingtesting5,0
app/channels/chat_channel.rb,122
class ChatChannel < ApplicationCable::ChannelChatChannel4,0
def subscribedsubscribed5,0
def speak(data)speak9,0
app/channels/application_cable/connection.rb,195
module ApplicationCableApplicationCable4,0
class Connection < ActionCable::Connection::BaseConnection5,0
class Connection < ActionCable::Connection::BaseApplicationCable::Connection5,0
app/channels/application_cable/channel.rb,177
module ApplicationCableApplicationCable4,0
class Channel < ActionCable::Channel::BaseChannel5,0
class Channel < ActionCable::Channel::BaseApplicationCable::Channel5,0
app/jobs/application_job.rb,58
class ApplicationJob < ActiveJob::BaseApplicationJob4,0
app/jobs/handle_webhooks_job.rb,98
class HandleWebhooksJob < ApplicationJobHandleWebhooksJob4,0
def perform(webhook)perform7,0
app/controllers/works_controller.rb,300
class WorksController < ApplicationControllerWorksController4,0
def indexindex7,0
def show; endshow12,0
def newnew14,0
def edit; endedit18,0
def createcreate20,0
def updateupdate30,0
def destroydestroy40,0
def set_workset_work48,0
def work_paramswork_params53,0
app/controllers/webhooks_controller.rb,182
class WebhooksController < ApplicationControllerWebhooksController3,0
def createcreate6,0
def valid_signature?valid_signature?28,0
def webhook_paramswebhook_params41,0
app/controllers/books_controller.rb,514
class BooksController < ApplicationControllerBooksController4,0
def indexindex9,0
def books_adminbooks_admin13,0
def books_authorbooks_author26,0
def books_titlebooks_title30,0
def newnew34,0
def edit; endedit38,0
def createcreate40,0
def show; endshow49,0
def updateupdate51,0
def destroydestroy59,0
def importimport69,0
def set_bookset_book80,0
def admin_onlyadmin_only86,0
def book_import_paramsbook_import_params90,0
def book_paramsbook_params94,0
app/controllers/sermons_controller.rb,314
class SermonsController < ApplicationControllerSermonsController18,0
def indexindex22,0
def show; endshow26,0
def newnew28,0
def edit; endedit32,0
def createcreate34,0
def updateupdate46,0
def destroydestroy50,0
def set_sermonset_sermon57,0
def sermon_paramssermon_params61,0
app/controllers/comments_controller.rb,209
class CommentsController < ApplicationControllerCommentsController4,0
def createcreate7,0
def destroydestroy19,0
def find_commentablefind_commentable27,0
def comment_paramscomment_params34,0
app/controllers/series_controller.rb,95
class SeriesController < ApplicationControllerSeriesController4,0
def index; endindex5,0
app/controllers/posts_controller.rb,326
class PostsController < ApplicationControllerPostsController4,0
def newnew9,0
def indexindex13,0
def showshow19,0
def createcreate23,0
def edit; endedit31,0
def updateupdate33,0
def destroydestroy41,0
def all_postsall_posts48,0
def set_postset_post52,0
def post_paramspost_params56,0
app/controllers/vnotes_controller.rb,338
class VnotesController < ApplicationControllerVnotesController16,0
def newnew21,0
def indexindex25,0
def showshow30,0
def createcreate34,0
def updateupdate41,0
def edit; endedit46,0
def destroydestroy48,0
def set_vnoteset_vnote55,0
def vnote_paramsvnote_params59,0
def vestry_onlyvestry_only63,0
app/controllers/pathways_controller.rb,318
class PathwaysController < ApplicationControllerPathwaysController4,0
def indexindex7,0
def edit; endedit11,0
def show; endshow13,0
def newnew15,0
def createcreate19,0
def updateupdate30,0
def destroydestroy38,0
def set_pathwayset_pathway45,0
def pathway_paramspathway_params49,0
app/controllers/turbo_devise_controller.rb,269
class TurboDeviseController < ApplicationControllerTurboDeviseController4,0
class Responder < ActionController::ResponderResponder5,0
class Responder < ActionController::ResponderTurboDeviseController::Responder5,0
def to_turbo_streamto_turbo_stream6,0
app/controllers/pages_controller.rb,658
class PagesController < ApplicationControllerPagesController4,0
def directions; enddirections5,0
def stay_safe; endstay_safe7,0
def sacred_ground; endsacred_ground9,0
def albergue; endalbergue11,0
def annnual_report; endannnual_report13,0
def history; endhistory15,0
def calendar; endcalendar17,0
def haitian; endhaitian19,0
def tumaini; endtumaini21,0
def music; endmusic23,0
def how_to_pray; endhow_to_pray25,0
def python_tutor; endpython_tutor27,0
def roberts_rules; endroberts_rules29,0
def how_to_use; endhow_to_use31,0
def way_of_love; endway_of_love33,0
def letsencryptletsencrypt35,0
app/controllers/tickets_controller.rb,320
class TicketsController < ApplicationControllerTicketsController4,0
def show; endshow9,0
def indexindex11,0
def newnew16,0
def createcreate20,0
def update; endupdate29,0
def thanksthanks31,0
def set_eventset_event37,0
def set_ticketset_ticket41,0
def ticket_paramsticket_params45,0
app/controllers/activities_controller.rb,103
class ActivitiesController < ApplicationControllerActivitiesController4,0
def index; endindex5,0
app/controllers/agendas_controller.rb,335
class AgendasController < ApplicationControllerAgendasController4,0
def showshow9,0
def indexindex14,0
def newnew18,0
def editedit24,0
def createcreate29,0
def updateupdate39,0
def destroydestroy48,0
def set_agendaset_agenda56,0
def admin_onlyadmin_only60,0
def agenda_paramsagenda_params67,0
app/controllers/todo_lists_controller.rb,329
class TodoListsController < ApplicationControllerTodoListsController4,0
def indexindex10,0
def show; endshow16,0
def newnew19,0
def edit; endedit25,0
def createcreate29,0
def updateupdate40,0
def destroydestroy50,0
def set_todo_listset_todo_list58,0
def todo_list_paramstodo_list_params63,0
app/controllers/formation_talks_controller.rb,358
class FormationTalksController < ApplicationControllerFormationTalksController4,0
def indexindex8,0
def show; endshow12,0
def newnew14,0
def edit; endedit18,0
def createcreate20,0
def updateupdate29,0
def destroydestroy37,0
def set_formation_talkset_formation_talk44,0
def formation_talk_paramsformation_talk_params48,0
app/controllers/tasks_controller.rb,300
class TasksController < ApplicationControllerTasksController4,0
def indexindex9,0
def show; endshow15,0
def newnew18,0
def edit; endedit23,0
def createcreate27,0
def updateupdate43,0
def destroydestroy57,0
def set_taskset_task71,0
def task_paramstask_params76,0
app/controllers/checkout_donations_controller.rb,114
class CheckoutDonationsController < ApplicationControllerCheckoutDonationsController4,0
def createcreate8,0
app/controllers/agenda_items_controller.rb,311
class AgendaItemsController < ApplicationControllerAgendaItemsController4,0
def indexindex5,0
def show; endshow9,0
def newnew11,0
def createcreate15,0
def editedit26,0
def update_positionupdate_position30,0
def destroydestroy36,0
def agenda_items_paramsagenda_items_params45,0
app/controllers/story_ideas_controller.rb,412
class StoryIdeasController < ApplicationControllerStoryIdeasController16,0
def newnew22,0
def indexindex26,0
def show; endshow31,0
def edit; endedit33,0
def createcreate35,0
def updateupdate46,0
def destroydestroy51,0
def set_story_ideaset_story_idea59,0
def story_idea_paramsstory_idea_params63,0
def find_commentablefind_commentable68,0
def authorizeauthorize73,0
app/controllers/todo_items_controller.rb,410
class TodoItemsController < ApplicationControllerTodoItemsController4,0
def indexindex9,0
def show; endshow14,0
def newnew17,0
def edit; endedit22,0
def createcreate25,0
def updateupdate37,0
def destroydestroy47,0
def update_positionupdate_position52,0
def set_todo_listset_todo_list61,0
def set_todo_itemset_todo_item65,0
def todo_item_paramstodo_item_params70,0
app/controllers/story_assignments_controller.rb,370
class StoryAssignmentsController < ApplicationControllerStoryAssignmentsController4,0
def indexindex8,0
def show; endshow13,0
def newnew16,0
def edit; endedit21,0
def createcreate24,0
def updateupdate35,0
def destroydestroy45,0
def set_story_assignmentset_story_assignment53,0
def story_assignment_paramsstory_assignment_params58,0
app/controllers/markets_controller.rb,97
class MarketsController < ApplicationControllerMarketsController4,0
def index; endindex5,0
app/controllers/stories_controller.rb,308
class StoriesController < ApplicationControllerStoriesController4,0
def indexindex9,0
def show; endshow14,0
def newnew17,0
def edit; endedit22,0
def createcreate25,0
def updateupdate36,0
def destroydestroy51,0
def set_storyset_story64,0
def story_paramsstory_params69,0
app/controllers/opportunities_controller.rb,295
class OpportunitiesController < ApplicationControllerOpportunitiesController4,0
def indexindex5,0
def show; endshow9,0
def editedit11,0
def newnew16,0
def createcreate21,0
def updateupdate29,0
def destroydestroy38,0
def opportunity_paramsopportunity_params47,0
app/controllers/members_controller.rb,268
class MembersController < ApplicationControllerMembersController4,0
def indexindex8,0
def updateupdate13,0
def edit; endedit19,0
def show; endshow21,0
def destroydestroy23,0
def set_memberset_member30,0
def member_paramsmember_params34,0
app/controllers/users_controller.rb,335
class UsersController < ApplicationControllerUsersController29,0
def newnew34,0
def indexindex38,0
def show; endshow43,0
def createcreate45,0
def updateupdate49,0
def edit; endedit53,0
def destroydestroy56,0
def set_userset_user63,0
def admin_onlyadmin_only67,0
def user_paramsuser_params72,0
app/controllers/checkout_tickets_controller.rb,110
class CheckoutTicketsController < ApplicationControllerCheckoutTicketsController4,0
def createcreate7,0
app/controllers/charges_controller.rb,117
class ChargesController < ApplicationControllerChargesController4,0
def new; endnew7,0
def createcreate9,0
app/controllers/marriage_talks_controller.rb,352
class MarriageTalksController < ApplicationControllerMarriageTalksController4,0
def indexindex9,0
def show; endshow15,0
def newnew18,0
def edit; endedit23,0
def createcreate27,0
def updateupdate38,0
def destroydestroy48,0
def set_marriage_talkset_marriage_talk56,0
def marriage_talk_paramsmarriage_talk_params60,0
app/controllers/registrations_controller.rb,233
class RegistrationsController < Devise::RegistrationsControllerRegistrationsController3,0
def createcreate4,0
def email_deliverable?(email)email_deliverable?15,0
def configure_sign_up_paramsconfigure_sign_up_params26,0
app/controllers/pray_fors_controller.rb,322
class PrayForsController < ApplicationControllerPrayForsController4,0
def indexindex7,0
def show; endshow13,0
def newnew16,0
def edit; endedit21,0
def createcreate25,0
def updateupdate36,0
def destroydestroy46,0
def set_pray_forset_pray_for60,0
def pray_for_paramspray_for_params65,0
app/controllers/homilists_controller.rb,359
class HomilistsController < ApplicationControllerHomilistsController16,0
def indexindex21,0
def show; endshow25,0
def newnew27,0
def edit; endedit31,0
def createcreate33,0
def updateupdate42,0
def destroydestroy50,0
def admin_onlyadmin_only57,0
def set_homilistset_homilist61,0
def homilist_paramshomilist_params65,0
app/controllers/events_controller.rb,339
class EventsController < ApplicationControllerEventsController4,0
def indexindex9,0
def newnew13,0
def show; endshow17,0
def edit; endedit19,0
def createcreate21,0
def updateupdate35,0
def destroydestroy47,0
def set_eventset_event57,0
def admin_onlyadmin_only61,0
def event_paramsevent_params65,0
app/controllers/checkout_pledges_controller.rb,110
class CheckoutPledgesController < ApplicationControllerCheckoutPledgesController4,0
def createcreate8,0
app/controllers/home_controller.rb,107
class HomeController < ApplicationControllerHomeController4,0
def indexindex5,0
def showshow17,0
app/controllers/pledges_controller.rb,371
class PledgesController < ApplicationControllerPledgesController4,0
def show; endshow9,0
def newnew11,0
def createcreate15,0
def edit; endedit26,0
def updateupdate28,0
def destroydestroy37,0
def set_pledgeset_pledge44,0
def change_pathchange_path48,0
def redirect_to_loginredirect_to_login54,0
def pledge_paramspledge_params61,0
app/controllers/stripe_reports_controller.rb,308
class StripeReportsController < ApplicationControllerStripeReportsController4,0
def newnew11,0
def createcreate15,0
def indexindex19,0
def show; endshow23,0
def set_stripe_reportset_stripe_report27,0
def stripe_report_paramsstripe_report_params31,0
def admin_onlyadmin_only36,0
app/controllers/donations_controller.rb,373
class DonationsController < ApplicationControllerDonationsController4,0
def indexindex9,0
def show; endshow13,0
def newnew15,0
def edit; endedit19,0
def createcreate21,0
def updateupdate31,0
def destroydestroy45,0
def set_donationset_donation57,0
def authenticate_adminauthenticate_admin61,0
def donation_paramsdonation_params65,0
app/controllers/application_controller.rb,326
class ApplicationController < ActionController::BaseApplicationController6,0
def configure_permitted_parametersconfigure_permitted_parameters18,0
def verified_request?verified_request?26,0
def store_current_locationstore_current_location32,0
def after_sign_out_path_for(_resource)after_sign_out_path_for36,0
app/controllers/surveys_controller.rb,312
class SurveysController < ApplicationControllerSurveysController4,0
def indexindex9,0
def show; endshow15,0
def newnew18,0
def edit; endedit23,0
def createcreate27,0
def updateupdate43,0
def destroydestroy57,0
def set_surveyset_survey71,0
def survey_paramssurvey_params76,0
app/controllers/profiles_controller.rb,298
class ProfilesController < ApplicationControllerProfilesController21,0
def edit; endedit25,0
def show; endshow27,0
def updateupdate29,0
def indexindex38,0
def new; endnew44,0
def createcreate46,0
def set_profileset_profile57,0
def profile_paramsprofile_params61,0
app/controllers/links_controller.rb,242
class LinksController < ApplicationControllerLinksController4,0
def indexindex9,0
def showshow17,0
def editedit26,0
def createcreate32,0
def updateupdate37,0
def destroydestroy47,0
def link_paramslink_params64,0
app/controllers/vestry_minutes_controller.rb,386
class VestryMinutesController < ApplicationControllerVestryMinutesController4,0
def indexindex11,0
def show; endshow17,0
def newnew20,0
def edit; endedit25,0
def createcreate29,0
def updateupdate41,0
def destroydestroy51,0
def set_vestry_minuteset_vestry_minute60,0
def vestry_minute_paramsvestry_minute_params65,0
def admin_onlyadmin_only69,0
app/controllers/anniversaries_controller.rb,307
class AnniversariesController < ApplicationControllerAnniversariesController4,0
def indexindex8,0
def show; endshow24,0
def createcreate26,0
def destroydestroy35,0
def set_anniversaryset_anniversary44,0
def admin_onlyadmin_only52,0
def anniversary_paramsanniversary_params56,0
app/controllers/leadership_controller.rb,103
class LeadershipController < ApplicationControllerLeadershipController4,0
def index; endindex5,0
app/controllers/worship_controller.rb,97
class WorshipController < ApplicationControllerWorshipController4,0
def index; endindex5,0
app/helpers/participants_helper.rb,49
module ParticipantsHelperParticipantsHelper4,0
app/helpers/rooms_helper.rb,35
module RoomsHelperRoomsHelper4,0
app/helpers/todo_items_helper.rb,43
module TodoItemsHelperTodoItemsHelper4,0
app/helpers/application_helper.rb,215
module ApplicationHelperApplicationHelper4,0
def bootstrap_class_for(flash_type)bootstrap_class_for5,0
def flash_messages(_opts = {})flash_messages14,0
def formatted_amount(amount)formatted_amount26,0
app/helpers/checkout_helper.rb,41
module CheckoutHelperCheckoutHelper4,0
app/helpers/anniversaries_helper.rb,103
module AnniversariesHelperAnniversariesHelper4,0
def recent_anniversariesrecent_anniversaries5,0
app/helpers/birthdays_helper.rb,93
module BirthdaysHelperBirthdaysHelper4,0
def birthdays_this_weekbirthdays_this_week5,0
app/helpers/members_helper.rb,89
module MembersHelperMembersHelper4,0
def birthdays_this_weekbirthdays_this_week5,0
app/helpers/submit_stories_helper.rb,51
module SubmitStoriesHelperSubmitStoriesHelper4,0
db/migrate/20240705213943_add_service_name_to_active_storage_blobs.active_storage.rb,148
class AddServiceNameToActiveStorageBlobs < ActiveRecord::Migration[6.0]AddServiceNameToActiveStorageBlobs2,0
def upup3,0
def downdown17,0
db/migrate/20240705213944_create_active_storage_variant_records.active_storage.rb,239
class CreateActiveStorageVariantRecords < ActiveRecord::Migration[6.0]CreateActiveStorageVariantRecords2,0
def changechange3,0
def primary_key_typeprimary_key_type17,0
def blobs_primary_key_typeblobs_primary_key_type22,0
db/migrate/20240705213945_remove_not_null_on_active_storage_blobs_checksum.active_storage.rb,149
class RemoveNotNullOnActiveStorageBlobsChecksum < ActiveRecord::Migration[6.0]RemoveNotNullOnActiveStorageBlobsChecksum2,0
def changechange3,0