mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-18 06:26:22 +00:00
fixup! chore: rubocop
This commit is contained in:
parent
0443cb0fc3
commit
5dbff20e2b
13 changed files with 13 additions and 13 deletions
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Create < ActivityPub::Activity; end
|
class Create < ActivityPub::Activity; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Delete < ActivityPub::Activity
|
class Delete < ActivityPub::Activity
|
||||||
# Si estamos eliminando el objeto, tenemos que vaciar su contenido y
|
# Si estamos eliminando el objeto, tenemos que vaciar su contenido y
|
||||||
# cambiar el estado a borrado
|
# cambiar el estado a borrado
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Flag < ActivityPub::Activity; end
|
class Flag < ActivityPub::Activity; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# Una actividad de seguimiento se refiere siempre a une actore (el
|
# Una actividad de seguimiento se refiere siempre a une actore (el
|
||||||
# sitio) y proviene de otre actore.
|
# sitio) y proviene de otre actore.
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Follow < ActivityPub::Activity; end
|
class Follow < ActivityPub::Activity; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Generic < ActivityPub::Activity; end
|
class Generic < ActivityPub::Activity; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# Deshace una actividad, dependiendo de la actividad a la que se
|
# Deshace una actividad, dependiendo de la actividad a la que se
|
||||||
# refiere.
|
# refiere.
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Undo < ActivityPub::Activity
|
class Undo < ActivityPub::Activity
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Activity
|
class Activity
|
||||||
class Update < ActivityPub::Activity
|
class Update < ActivityPub::Activity
|
||||||
# Si estamos actualizando el objeto, tenemos que devolverlo a estado
|
# Si estamos actualizando el objeto, tenemos que devolverlo a estado
|
||||||
# de moderación
|
# de moderación
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
# Una aplicación o instancia
|
# Una aplicación o instancia
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Object
|
class Object
|
||||||
class Application < ActivityPub::Object; end
|
class Application < ActivityPub::Object; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
# Representa artículos
|
# Representa artículos
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Object
|
class Object
|
||||||
class Article < ActivityPub::Object; end
|
class Article < ActivityPub::Object; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
# = Generic =
|
# = Generic =
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Object
|
class Object
|
||||||
class Generic < ActivityPub::Object; end
|
class Generic < ActivityPub::Object; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
# Representa notas, el tipo más común de objeto del Fediverso.
|
# Representa notas, el tipo más común de objeto del Fediverso.
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Object
|
class Object
|
||||||
class Note < ActivityPub::Object; end
|
class Note < ActivityPub::Object; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
# Una organización
|
# Una organización
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Object
|
class Object
|
||||||
class Organization < ActivityPub::Object; end
|
class Organization < ActivityPub::Object; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#
|
#
|
||||||
# Una persona, el perfil de une actore
|
# Una persona, el perfil de une actore
|
||||||
class ActivityPub
|
class ActivityPub
|
||||||
module Object
|
class Object
|
||||||
class Person < ActivityPub::Object; end
|
class Person < ActivityPub::Object; end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue